Skip to content

Commit a306c2e

Browse files
committed
fix(test): increase slow to 10s
1 parent f9ca6da commit a306c2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/appRouter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const appRouter = router({
2626
return state.count;
2727
}),
2828
slow: publicProcedure.query(async () => {
29-
await new Promise(resolve => setTimeout(resolve, 2000));
29+
await new Promise(resolve => setTimeout(resolve, 10 * 1000));
3030
return 'done';
3131
})
3232
});

0 commit comments

Comments
 (0)