Skip to content

Commit

Permalink
test: remove skip expresson
Browse files Browse the repository at this point in the history
  • Loading branch information
shootermv committed Aug 30, 2023
1 parent dbbe6a7 commit 1cbadf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Pages/Commits.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test("when fetched empty array - should render 'no records found' message", asyn
});
});

test.skip("should render some records", async () => {
test("should render some records", async () => {
const record = {
html_url: "hh",
author: { avatar_url: "uuu", login: "jjj" },
Expand All @@ -41,7 +41,7 @@ test.skip("should render some records", async () => {
});
});

test.skip("should show loader when loading and hide it after request ended", async () => {
test("should show loader when loading and hide it after request ended", async () => {
vi.spyOn(global, "fetch").mockResolvedValue({
json: vi.fn().mockResolvedValue([]),
} as any);
Expand Down

0 comments on commit 1cbadf0

Please sign in to comment.