1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

add help messages to Deno.test() sanitizers (#4887)

This commit is contained in:
Bartek Iwańczuk 2020-04-25 00:07:25 +02:00 committed by GitHub
parent e9fa6b87ce
commit 833539fcaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,10 @@ Before:
- completed: ${pre.opsCompletedAsync} - completed: ${pre.opsCompletedAsync}
After: After:
- dispatched: ${post.opsDispatchedAsync} - dispatched: ${post.opsDispatchedAsync}
- completed: ${post.opsCompletedAsync}` - completed: ${post.opsCompletedAsync}
Make sure to await all promises returned from Deno APIs before
finishing test case.`
); );
}; };
} }
@ -71,7 +74,10 @@ function assertResources(
const postStr = JSON.stringify(post, null, 2); const postStr = JSON.stringify(post, null, 2);
const msg = `Test case is leaking resources. const msg = `Test case is leaking resources.
Before: ${preStr} Before: ${preStr}
After: ${postStr}`; After: ${postStr}
Make sure to close all open resource handles returned from Deno APIs before
finishing test case.`;
assert(preStr === postStr, msg); assert(preStr === postStr, msg);
}; };
} }