Skip to content

Latest commit

History

History
24 lines (17 loc) 路 911 Bytes

07-test-timeouts.md

File metadata and controls

24 lines (17 loc) 路 911 Bytes

Test timeouts

Translations: Fran莽ais

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.

There is no default timeout.

You can configure timeouts using the --timeout command line option, or in the configuration. They can be set in a human-readable way:

npx ava --timeout=10s # 10 seconds
npx ava --timeout=2m # 2 minutes
npx ava --timeout=100 # 100 milliseconds

Timeouts can also be set individually for each test. These timeouts are reset each time an assertion is made.

test('foo', t => {
	t.timeout(100); // 100 milliseconds
	// Write your assertions here
});