Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Yanfali updates #1358

Merged
merged 13 commits into from
Aug 16, 2024
Prev Previous commit
Next Next commit
chore: remove trailing commas
  • Loading branch information
yanfali committed Aug 15, 2024
commit 47fa70022b3d7046ebde69bf65c6bbc9d92ce079
12 changes: 6 additions & 6 deletions cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { defineConfig } = require('cypress')
const { defineConfig } = require('cypress');

module.exports = defineConfig({
fixturesFolder: 'tests/fixtures',
Expand All @@ -8,14 +8,14 @@ module.exports = defineConfig({
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./cypress/plugins/index.js')(on, config)
return require('./cypress/plugins/index.js')(on, config);
},
baseUrl: 'http://localhost:5173/',
specPattern: 'tests/integration/**/*.spec.js',
supportFile: false,
supportFile: false
},
component: {
setupNodeEvents(on, config) {},
specPattern: 'src/**/*.spec.js',
},
})
specPattern: 'src/**/*.spec.js'
}
});
Loading