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 c40d5a2 commit d94ae65Copy full SHA for d94ae65
apps/test-app/scripts/fake-tests.ts
@@ -22,8 +22,9 @@ const client = new Client({
22
tests: () => {
23
// write your tests here or require a package that calls the mocha globals
24
describe("my thing", () => {
25
- it("works", () => {
+ it("works", async () => {
26
// yay!
27
+ await new Promise((resolve) => setTimeout(resolve, 1000));
28
});
29
30
},
0 commit comments