Skip to content

Commit 07ca792

Browse files
tvervestblurrah
authored andcommitted
chore: more code cleanup
1 parent e32ea87 commit 07ca792

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ describe("gqlClientFetch", () => {
144144
expect(gqlResponse).rejects.toThrow();
145145
});
146146

147-
it.only("should use time out after 30 seconds by default", async () => {
147+
it("should use time out after 30 seconds by default", async () => {
148148
const timeoutSpy = vi.spyOn(AbortSignal, "timeout");
149149
fetchMock.mockResponse(responseString);
150150

src/server.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ describe("gqlServerFetch", () => {
176176
expect(fetchMock).toHaveBeenCalledTimes(1);
177177
});
178178

179-
it.only("should use time out after 30 seconds by default", async () => {
179+
it("should use time out after 30 seconds by default", async () => {
180180
const timeoutSpy = vi.spyOn(AbortSignal, "timeout");
181181
const gqlServerFetch = initServerFetcher("https://localhost/graphql");
182182
fetchMock.mockResponse(successResponse);

0 commit comments

Comments
 (0)