1
0
Fork 0
firefox/docs/code-quality/lint/linters/eslint-plugin-mozilla/rules/reject-requires-await.rst
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
581 B
ReStructuredText

reject-requires-await
=====================
`Assert.rejects` must be preceded by an `await`, otherwise the assertion
may not be completed before the test finishes, might not be caught
and might cause intermittent issues in other tests.
Examples of incorrect code for this rule:
-----------------------------------------
.. code-block:: js
Assert.rejects(myfunc(), /startup failed/, "Should reject");
Examples of correct code for this rule:
---------------------------------------
.. code-block:: js
await Assert.rejects(myfunc(), /startup failed/, "Should reject");