We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1841d5d commit a153d34Copy full SHA for a153d34
1 file changed
src/timeout.spec.ts
@@ -15,7 +15,7 @@ describe("timeoutFallback", () => {
15
});
16
17
18
-describe("timeoutError", () => {
+describe.skip("timeoutError", () => {
19
it("should resolve with the promise value when it completes before timeout", async () => {
20
const promise = new Promise<string>((resolve) => setTimeout(() => resolve("success"), 10));
21
const result = await timeoutError(promise, "error", 20);
0 commit comments