Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6123908
Upgrade Cypress to 8
joshhanley Jun 24, 2026
01e3943
Add jsdom dependency for Vitest
joshhanley Jun 24, 2026
c0b91e6
Upgrade Cypress to 9
joshhanley Jun 24, 2026
ce42921
Upgrade Cypress to 10
joshhanley Jun 24, 2026
d8eb254
Keep cypress-plugin-tab on 1.x
joshhanley Jun 24, 2026
acd6b27
Upgrade Cypress to 11
joshhanley Jun 25, 2026
2e469a1
Upgrade Cypress to 12
joshhanley Jun 25, 2026
017cf61
Fix Cypress 12 alias recursion
joshhanley Jun 25, 2026
9c544b4
Upgrade Cypress to 13
joshhanley Jun 25, 2026
a4ca1cc
Update CSS custom property spacing expectations
joshhanley Jun 25, 2026
0cd8004
Upgrade Cypress to 14
joshhanley Jun 25, 2026
e6254ad
Upgrade Cypress to 15
joshhanley Jun 25, 2026
dbdfdb6
Stabilize intersect margin test
joshhanley Jun 25, 2026
5479631
Avoid scroll geometry in intersect margin test
joshhanley Jun 25, 2026
5d3259a
Isolate intersect margin test in CI
joshhanley Jun 25, 2026
a6dde61
Narrow CI to intersect margin probe
joshhanley Jun 25, 2026
32640a6
Probe intersect margin geometry in CI
joshhanley Jun 25, 2026
aa6115d
Probe intersect margin observer records
joshhanley Jun 25, 2026
df4af94
Adjust intersect margin test for Cypress iframe
joshhanley Jun 25, 2026
cf77384
Assert intersect margin behaviour
joshhanley Jun 30, 2026
9db70e1
Restore intersect margin test
joshhanley Jul 1, 2026
7b311ff
Relax intersect margin test distance
joshhanley Jul 1, 2026
8eeeda5
Merge remote-tracking branch 'origin/main' into josh/upgrade-cypress
joshhanley Jul 1, 2026
9e50193
Test intersect margin with parent root
joshhanley Jul 1, 2026
b5ca6e6
Minimize intersect margin test changes
joshhanley Jul 1, 2026
1ba49b3
Restore full CI test workflow
joshhanley Jul 1, 2026
6477b54
Re-enable intersect spec
joshhanley Jul 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '20'
- run: npm install
- run: npm run build
- run: npm run test
Expand Down
14 changes: 14 additions & 0 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const { defineConfig } = require('cypress')

module.exports = defineConfig({
screenshotOnRunFailure: false,
video: false,
fixturesFolder: 'tests/cypress/fixtures',
screenshotsFolder: 'tests/cypress/screenshots',
videosFolder: 'tests/cypress/videos',

e2e: {
specPattern: 'tests/cypress/integration/**/*.spec.js',
supportFile: 'tests/cypress/support/index.js',
},
})
11 changes: 0 additions & 11 deletions cypress.json

This file was deleted.

Loading
Loading