Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit aacaf76

Browse files
konstantindenerzanthonymjones
authored andcommitted
feat(builder): add quiet option to passt it to the cypress CLI
1 parent f729291 commit aacaf76

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/builders/cypress/cypress-builder-options.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export interface CypressBuilderOptions extends JsonObject {
66
browser: 'electron' | 'chrome' | 'chromium' | 'canary' | string;
77
devServerTarget: string;
88
env: Record<string, string>;
9+
quiet: boolean;
910
exit: boolean;
1011
headless: boolean;
1112
key: string;

src/builders/cypress/schema.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
"type": ["string", "boolean"],
1212
"description": "You can specify a path to a JSON file where configuration values are set or you can pass false to disable the use of a configuration file entirely."
1313
},
14+
"quiet": {
15+
"type": "boolean",
16+
"description": "If passed, Cypress output will not be printed to stdout. Only output from the configured Mocha reporter will print.",
17+
"default": false
18+
},
1419
"browser": {
1520
"type": "string",
1621
"description": "The browser to run tests in.",

0 commit comments

Comments
 (0)