summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorAxetroy <troy450409405@gmail.com>2019-03-20 01:22:33 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-03-19 13:22:33 -0400
commiteaa795d477948c11a99d0c1cf42f25ba668d892f (patch)
tree6542a62a6e343d9d6863e9514878d197bdf7650d /testing
parent4ac66ec6401ff007193d6fb923dab8ae0839662d (diff)
fix: wrong usage of assertThrowsAsync which without await keyword (denoland/deno_std#295)
Original: https://github.com/denoland/deno_std/commit/59adafe86710038c6864fc0686f0292bf7fd9b1d
Diffstat (limited to 'testing')
-rw-r--r--testing/README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/testing/README.md b/testing/README.md
index 3d49c5a76..684d5d4bc 100644
--- a/testing/README.md
+++ b/testing/README.md
@@ -113,27 +113,27 @@ Using `assertThrowsAsync()`:
```ts
test(async function doesThrow() {
- assertThrowsAsync(async () => {
+ await assertThrowsAsync(async () => {
throw new TypeError("hello world!");
});
- assertThrowsAsync(async () => {
+ await assertThrowsAsync(async () => {
throw new TypeError("hello world!");
}, TypeError);
- assertThrowsAsync(
+ await assertThrowsAsync(
async () => {
throw new TypeError("hello world!");
},
TypeError,
"hello"
);
- assertThrowsAsync(async () => {
+ await assertThrowsAsync(async () => {
return Promise.reject(new Error());
});
});
// This test will not pass
test(async function fails() {
- assertThrowsAsync(async () => {
+ await assertThrowsAsync(async () => {
console.log("Hello world");
});
});