Increase timeouts for shell-hang.test.ts (#13932)

This commit is contained in:
190n
2024-09-12 16:23:33 -08:00
committed by GitHub
parent c2c2048072
commit b146449ed5

View File

@@ -22,7 +22,7 @@ describe("fail", () => {
fixture => {
expect([path.join(import.meta.dir, fixture)]).not.toRun();
},
500,
700,
);
});
@@ -32,6 +32,6 @@ describe("pass", () => {
fixture => {
expect([path.join(import.meta.dir, fixture)]).toRun();
},
500,
700,
);
});