Skip to content

Commit 4665d63

Browse files
committed
[readme] document Promise support; remove Promise-related alternatives
1 parent 5b7720a commit 4665d63

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

readme.markdown

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ test('timing test', function (t) {
2121
t.equal(Date.now() - start, 100);
2222
}, 100);
2323
});
24+
25+
test('test using promises', async function (t) {
26+
const result = await someAsyncThing();
27+
t.ok(result);
28+
});
2429
```
2530

2631
```
@@ -128,7 +133,6 @@ By default, uncaught exceptions in your tests will not be intercepted, and will
128133
## other
129134

130135
- CoffeeScript support with https://www.npmjs.com/package/coffeetape
131-
- Promise support with https://www.npmjs.com/package/blue-tape or https://www.npmjs.com/package/tape-promise
132136
- ES6 support with https://www.npmjs.com/package/babel-tape-runner or https://www.npmjs.com/package/buble-tape-runner
133137
- Different test syntax with https://github.com/pguth/flip-tape (warning: mutates String.prototype)
134138
- Electron test runner with https://github.com/tundrax/electron-tap

0 commit comments

Comments
 (0)