Skip to content

Commit 3c46886

Browse files
committed
Fix async functions
1 parent 1df140f commit 3c46886

File tree

3 files changed

+34
-14
lines changed

3 files changed

+34
-14
lines changed

package-lock.json

Lines changed: 32 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"chalk": "^2.4.2",
5050
"core-js": "^2.6.5",
5151
"figures": "^2.0.0",
52-
"jest-validate": "^24.0.0",
52+
"jest-validate": "^24.2.0-alpha.0",
5353
"moize": "^5.4.2",
5454
"supports-color": "^6.1.0"
5555
},

test/exit.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ repeatEvents((prefix, { eventName, emitEvent }) => {
8282
unstubProcessExit({ clock, processExit })
8383
})
8484

85-
// eslint-disable-next-line ava/no-skip-test
86-
test.skip(`${prefix} should delay process.exit(1) with async opts.log()`, async t => {
85+
test(`${prefix} should delay process.exit(1) with async opts.log()`, async t => {
8786
const { clock, processExit } = stubProcessExit()
8887

8988
const { promise, resolve } = getPromise()

0 commit comments

Comments
 (0)