Skip to content

Commit cb7ae1a

Browse files
committed
add an example
1 parent e60bb6b commit cb7ae1a

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

example/empty.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// https://gist.github.com/Hypercubed/f0e4514bc9aec5cc5c9e814bbc1dab2d
2+
// f431390d24fa067fb262d4ea03de3d77911b95bf
3+
var test = require('tape')
4+
var math = require('./math')
5+
6+
test('t.plan', function(t) {
7+
t.plan(3)
8+
9+
t.equal(
10+
math.toFixed(2.385, 2),
11+
'2.39'
12+
)
13+
next(function () {
14+
t.whatIsThisFunction(); // causes an uncaught error
15+
t.equal(
16+
math.toFixed(2.384, 2),
17+
'2.38'
18+
)
19+
t.equal(
20+
math.toFixed(2, 2),
21+
'2.00'
22+
)
23+
})
24+
})
25+
26+
function next(fn) {
27+
setTimeout(function() {
28+
fn()
29+
}, 100)
30+
}

0 commit comments

Comments
 (0)