Skip to content

Commit

Permalink
Reinstall XO to fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
novemberborn committed Jul 7, 2020
1 parent 7d4aa45 commit a557bc0
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 31 deletions.
58 changes: 29 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/test-timeouts/fixtures/custom-message.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const test = require('ava');

test('timeout with custom message', async t => {
t.timeout(10, 'time budget exceeded'); // eslint-disable-line ava/assertion-arguments
t.timeout(10, 'time budget exceeded');
await new Promise(() => {});
});
2 changes: 1 addition & 1 deletion test/test-timeouts/fixtures/invalid-message.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const test = require('ava');

test('timeout with invalid message', t => {
t.timeout(10, 20); // eslint-disable-line ava/assertion-arguments
t.timeout(10, 20);
});

0 comments on commit a557bc0

Please sign in to comment.