Skip to content

Commit d94ae65

Browse files
committed
WIP
1 parent c40d5a2 commit d94ae65

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/test-app/scripts/fake-tests.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ const client = new Client({
2222
tests: () => {
2323
// write your tests here or require a package that calls the mocha globals
2424
describe("my thing", () => {
25-
it("works", () => {
25+
it("works", async () => {
2626
// yay!
27+
await new Promise((resolve) => setTimeout(resolve, 1000));
2728
});
2829
});
2930
},

0 commit comments

Comments
 (0)