Skip to content

Commit fde8671

Browse files
committedJan 11, 2024
Test with AVA 6
1 parent 808a561 commit fde8671

File tree

4 files changed

+30
-393
lines changed

4 files changed

+30
-393
lines changed
 

‎ava.config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ const skipWatchMode = process.env.TEST_AVA_SKIP_WATCH_MODE ? ['!test/watch-mode/
44

55
export default { // eslint-disable-line import/no-anonymous-default-export
66
files: ['test/**', '!test/**/{fixtures,helpers}/**', ...skipWatchMode],
7-
ignoredByWatcher: ['{coverage,docs,media,test-types,test-tap}/**'],
7+
watchMode: {
8+
ignoreChanges: ['{coverage,docs,media,test-types,test-tap}/**'],
9+
},
810
environmentVariables: {
911
AVA_FAKE_SCM_ROOT: '.fake-root', // This is an internal test flag.
1012
},

‎package-lock.json

+22-385
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎scripts/ci.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ set -ex
44
# Set environment variable to have the AVA config skip wathch mode tests.
55
TEST_AVA_SKIP_WATCH_MODE=1 npx c8 --report=none npx test-ava
66

7-
# Reduce concurrency and be generous with timeouts to give watch mode tests a
8-
# better chance of succeeding in a CI environment.
9-
npx c8 --report=none --no-clean npx test-ava --serial --timeout 30s test/watch-mode
7+
# Reduce concurrency to give watch mode tests a better chance of succeeding in
8+
# a CI environment.
9+
npx c8 --report=none --no-clean npx test-ava --serial test/watch-mode
1010

1111
# Only run reporter tests on Linux where they're least likely to flake out.
1212
case "$(uname -s)" in

‎test/watch-mode/helpers/watch.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,13 @@ export const withFixture = fixture => async (t, task) => {
8080
const assertIdle = async next => {
8181
assertingIdle = true;
8282

83-
// TODO: When testing using AVA 6, enable for better managed timeouts.
84-
// t.timeout(10_000);
83+
t.timeout(30_000);
8584

8685
const promise = Promise.all([delay(5000, null, {ref: false}), next?.()]).finally(() => {
8786
if (idlePromise === promise) {
8887
idlePromise = new Promise(() => {});
8988
assertingIdle = false;
90-
// TODO: When testing using AVA 6, enable for better managed timeouts.
91-
// t.timeout.clear();
89+
t.timeout.clear();
9290
if (failedIdleAssertion) {
9391
failedIdleAssertion = false;
9492
t.fail('Watcher performed a test run while it should have been idle');

0 commit comments

Comments
 (0)
Please sign in to comment.