Skip to content

Commit

Permalink
chore: intentional test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Oct 2, 2024
1 parent b51d51a commit 2b09b28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qwik/app/src/components/example/example.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test(`[ExampleTest Component]: Should render ⭐`, async () => {
await render(<ExampleTest flag={true} />);
expect(screen.outerHTML).toContain('⭐');
const div = screen.querySelector('.icon') as HTMLElement;
expect(div.outerHTML).toContain('');
expect(div.outerHTML).toContain(':grumpy-cat:');
});

test(`[ExampleTest Component]: Should render 💣`, async () => {
Expand Down

0 comments on commit 2b09b28

Please sign in to comment.