Skip to content

Commit 8832c97

Browse files
committed
fix: suppress webpack warnings in angular examples
1 parent b7447ff commit 8832c97

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

angular-standalone/cypress.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export default defineConfig({
55
devServer: {
66
framework: "angular",
77
bundler: "webpack",
8+
webpackConfig: { stats: "errors-only" }, // see issue https://github.com/cypress-io/cypress/issues/26456
89
},
910
specPattern: "**/*.cy.ts",
1011
},

angular/cypress.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export default defineConfig({
55
devServer: {
66
framework: "angular",
77
bundler: "webpack",
8+
webpackConfig: { stats: "errors-only" }, // see issue https://github.com/cypress-io/cypress/issues/26456
89
},
910
specPattern: "**/*.cy.ts",
1011
},

0 commit comments

Comments
 (0)