Skip to content

Commit aa7f366

Browse files
committed
upgrade cypress to 15.6.0
1 parent a0439aa commit aa7f366

File tree

4 files changed

+363
-266
lines changed

4 files changed

+363
-266
lines changed

cypress.config.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const config: any = {
2+
e2e: {
3+
// include existing .cy.ts specs and legacy integration folder
4+
specPattern: ['cypress/**/*.cy.{js,ts}', 'cypress/integration/**/*.cy.{js,ts}'],
5+
supportFile: 'cypress/support/index.ts',
6+
videosFolder: 'cypress/videos',
7+
downloadsFolder: 'cypress/downloads',
8+
baseUrl: 'https://text-compare.netlify.app',
9+
setupNodeEvents(on, cfg) {
10+
// keep default behavior; add plugins here if needed
11+
return cfg;
12+
}
13+
}
14+
};
15+
16+
export default config;

cypress/integration/home.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference types="Cypress" />
1+
/// <reference types="cypress" />
22

33
describe('Text Compare App', () => {
44
beforeEach(() => {

0 commit comments

Comments
 (0)