Skip to content

Commit

Permalink
no crop test
Browse files Browse the repository at this point in the history
  • Loading branch information
tevanoff committed Mar 19, 2024
1 parent cf75f80 commit b2dc3cf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/cypress/tests/cypress/e2e/options.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ it('prefers reduced motion', { env: { prefersReducedMotion: 'reduce' } }, () =>
it('crops to viewport', { env: { cropToViewport: true } }, () => {
cy.visit('/options/crop-to-viewport');
});

it('does not crop to viewport by default', () => {
cy.visit('/options/crop-to-viewport');
});
4 changes: 4 additions & 0 deletions packages/playwright/tests/options.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,7 @@ test.describe(() => {
await page.goto('/options/crop-to-viewport');
});
});

test('does not crop to viewport by default', async ({ page }) => {
await page.goto('/options/crop-to-viewport');
});

0 comments on commit b2dc3cf

Please sign in to comment.