Skip to content

Commit c5640e6

Browse files
committed
update workflow
1 parent 5b8d62f commit c5640e6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- os: windows-latest
3636
name: Windows
3737
exclude:
38-
- os: windows-lates
38+
- os: windows-latest
3939
browser: webkit
4040

4141
name: ${{ matrix.name }} - ${{ matrix.browser }}

Diff for: cypress.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from "cypress";
22

33
export default defineConfig({
4-
// defaultCommandTimeout: 100000,
4+
defaultCommandTimeout: 10000,
55
experimentalWebKitSupport: true,
66
e2e: {
77
setupNodeEvents(on, config) {

Diff for: cypress/e2e/spec.cy.ts

+3
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ describe('Editor Test', () => {
5252
})
5353

5454
it('allows for multiple editors', () => {
55+
cy.on('uncaught:exception', (err, runnable) => {
56+
return false
57+
})
5558
cy.visit('http://localhost:5173/')
5659
cy.contains('#check 0')
5760
cy.get('[data-cy="number-editors"]').type('{selectall}').type('2')

0 commit comments

Comments
 (0)