You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Register a function to be called when AVA has completed a test run without uncaught exceptions or unhandled rejections.
Fixes#3279.
*
* Completion handlers are invoked in order of registration. Results are not awaited.
Copy file name to clipboardexpand all lines: docs/01-writing-tests.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -154,7 +154,7 @@ AVA lets you register hooks that are run before and after your tests. This allow
154
154
155
155
If a test is skipped with the `.skip` modifier, the respective `.beforeEach()`, `.afterEach()` and `.afterEach.always()` hooks are not run. Likewise, if all tests in a test file are skipped `.before()`, `.after()` and `.after.always()` hooks for the file are not run.
156
156
157
-
*You may not need to use `.afterEach.always()` hooks to clean up after a test.* You can use [`t.teardown()`](./02-execution-context.md#tteardownfn) to undo side-effects *within* a particular test.
157
+
*You may not need to use `.afterEach.always()` hooks to clean up after a test.* You can use [`t.teardown()`](./02-execution-context.md#tteardownfn) to undo side-effects *within* a particular test. Or use [`registerCompletionHandler()`](./08-common-pitfalls.md#timeouts-because-a-file-failed-to-exit) to run cleanup code after AVA has completed its work.
158
158
159
159
Like `test()` these methods take an optional title and an implementation function. The title is shown if your hook fails to execute. The implementation is called with an [execution object](./02-execution-context.md). You can use assertions in your hooks. You can also pass a [macro function](#reusing-test-logic-through-macros) and additional arguments.
[](https://stackblitz.com/github/avajs/ava/tree/main/examples/timeouts?file=test.js&terminal=test&view=editor)
6
6
7
-
Timeouts in AVA behave differently than in other test frameworks. AVA resets a timer after each test, forcing tests to quit if no new test results were received within the specified timeout. This can be used to handle stalled tests.
7
+
Timeouts in AVA behave differently than in other test frameworks. AVA resets a timer after each test, forcing tests to quit if no new test results were received within the specified timeout. This can be used to handle stalled tests. This same mechanism is used to determine when a test file is preventing a clean exit.
If possible don't specify the command line option when running AVA. Alternatively you could [disable worker threads in AVA](./06-configuration.md#options).
83
83
84
+
## Timeouts because a file failed to exit
85
+
86
+
You may get a "Timed out while running tests" error because AVA failed to exit when running a particular file.
87
+
88
+
AVA waits for Node.js to exit the worker thread or child process. If this takes too long, AVA counts it as a timeout.
89
+
90
+
It is best practice to make sure your code exits cleanly. We've also seen occurrences where an explicit `process.exit()` call inside a worker thread could not be observed in AVA's main process.
91
+
92
+
For these reasons we're not providing an option to disable this timeout behavior. However, it is possible to register a callback for when AVA has completed the test run without uncaught exceptions or unhandled rejections. From inside this callback you can do whatever you need to do, including calling `process.exit()`.
93
+
94
+
Create a `_force-exit.mjs` file:
95
+
96
+
```js
97
+
importprocessfrom'node:process';
98
+
import { registerCompletionHandler } from'ava';
99
+
100
+
registerCompletionHandler(() => {
101
+
process.exit();
102
+
});
103
+
```
104
+
105
+
Completion handlers are invoked in order of registration. Results are not awaited.
106
+
107
+
Load it for all test files through AVA's `require` option:
108
+
109
+
```js
110
+
exportdefault {
111
+
require: ['./_force-exit.mjs'],
112
+
};
113
+
```
114
+
84
115
## Sharing variables between asynchronous tests
85
116
86
117
By default AVA executes tests concurrently. This can cause problems if your tests are asynchronous and share variables.
1 commit comments
Jerbell commentedon Jan 12, 2024
@novemberborn Looks good. This should be in the next release?