Skip to content

Commit

Permalink
revert fail on purpose
Browse files Browse the repository at this point in the history
  • Loading branch information
maximpertsov committed Dec 5, 2023
1 parent 97d4f6a commit 69551d8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rpc/examples/echo/tests/echo.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ test("receives responses", async ({ page }) => {

for (const [testID, expected] of table) {
const messages = page.getByTestId(testID).getByTestId("message");
// TODO: this test fails on purpose
await expect(messages).toHaveCount(expected.length + 1);
await expect(messages).toHaveCount(expected.length);
await expect(messages).toContainText(expected);
}
});

0 comments on commit 69551d8

Please sign in to comment.