We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34b900 commit 441a740Copy full SHA for 441a740
test/run.js
@@ -0,0 +1,25 @@
1
+var test = require('tape')
2
+var run = require('..').run
3
+
4
+test('run', function(t) {
5
+ t.plan(3)
6
+ run([
7
+ function () {
8
+ t.ok(true)
9
+ },
10
11
+ process.nextTick(function () {
12
13
+ })
14
15
16
+ return new Promise(function (resolve) {
17
18
19
+ resolve()
20
21
22
23
+ ])
24
+})
25
0 commit comments