Skip to content

Commit ddce6f1

Browse files
committed
chore: configure e2e testing
1 parent 143d23f commit ddce6f1

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

angular-zoneless/cypress.config.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,10 @@ export default defineConfig({
88
},
99
specPattern: "**/*.cy.ts",
1010
},
11+
12+
e2e: {
13+
setupNodeEvents(on, config) {
14+
// implement node event listeners here
15+
},
16+
},
1117
});
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// ***********************************************************
2+
// This example support/e2e.ts is processed and
3+
// loaded automatically before your test files.
4+
//
5+
// This is a great place to put global configuration and
6+
// behavior that modifies Cypress.
7+
//
8+
// You can change the location of this file or turn off
9+
// automatically serving support files with the
10+
// 'supportFile' configuration option.
11+
//
12+
// You can read more here:
13+
// https://on.cypress.io/configuration
14+
// ***********************************************************
15+
16+
// Import commands.js using ES2015 syntax:
17+
import './commands'

0 commit comments

Comments
 (0)