Skip to content

Commit

Permalink
🔧 Fix a broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
himynameisdave committed Sep 5, 2023
1 parent 47e6966 commit a74ce1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ test('column - renders with flex positions at the start', async ({ page }) => {
test('reverse - will apply proper reverse direction', async ({ page }) => {
await page.goto('/');

const element = page.getByTestId('additionalProps');
const element = page.getByTestId('reverse');
await expect(element).toHaveCSS('display', 'flex');
await expect(element).toHaveCSS('flex-direction', 'row-reverse');
});
Expand Down

0 comments on commit a74ce1f

Please sign in to comment.