Skip to content

Commit

Permalink
chore: update cypress to 12.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVarchuk committed Jul 27, 2023
1 parent 054f604 commit c7d07cd
Show file tree
Hide file tree
Showing 6 changed files with 246 additions and 148 deletions.
20 changes: 20 additions & 0 deletions cypress.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { defineConfig } from 'cypress';

export default defineConfig({
fixturesFolder: false,
fileServerFolder: '.',
video: true,
projectId: 'z6eb6h',
viewportWidth: 1440,
viewportHeight: 720,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./e2e/plugins/index.js')(on, config);
},
excludeSpecPattern: '*.js.map',
specPattern: 'e2e/integration/**/*.{js,jsx,ts,tsx}',
supportFile: false,
},
});
12 changes: 0 additions & 12 deletions cypress.json

This file was deleted.

2 changes: 1 addition & 1 deletion e2e/integration/standalone.e2e.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
describe('Standalone bundle test', () => {
function baseCheck(name: string, url: string) {
describe(name, () => {
before(() => {
beforeEach(() => {
cy.visit(url);
});

Expand Down
Loading

0 comments on commit c7d07cd

Please sign in to comment.