Skip to content

Commit

Permalink
test: remove only flag
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMcIntosh committed Jan 10, 2024
1 parent 21a5b14 commit b1df6e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/Chat.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe("Chat", () => {
vi.restoreAllMocks();
});

it.only("should send and receive messages from the window", async () => {
it("should send and receive messages from the window", async () => {
vi.mock("uuid", () => ({ v4: () => "foo" }));

const postMessageSpy = vi.spyOn(window, "postMessage");
Expand Down

0 comments on commit b1df6e7

Please sign in to comment.