feat(react): Add playwright support to generators (#21150)

Co-authored-by: Vadim Zhamkov <vad-js@nebius.com>
This commit is contained in:
Vadim Zhamkov 2024-01-18 16:56:54 +01:00 committed by GitHub
parent 67ca5f85ed
commit 7192141c44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 9 additions and 9 deletions

View File

@ -68,7 +68,7 @@
},
"e2eTestRunner": {
"type": "string",
"enum": ["cypress", "none"],
"enum": ["cypress", "playwright", "none"],
"description": "Test runner to use for end to end (e2e) tests.",
"default": "cypress"
},

View File

@ -93,7 +93,7 @@
},
"e2eTestRunner": {
"type": "string",
"enum": ["cypress", "none"],
"enum": ["cypress", "playwright", "none"],
"description": "Test runner to use for end to end (e2e) tests.",
"default": "cypress"
},

View File

@ -99,7 +99,7 @@
},
"e2eTestRunner": {
"type": "string",
"enum": ["cypress", "none"],
"enum": ["cypress", "playwright", "none"],
"description": "Test runner to use for end to end (e2e) tests.",
"default": "cypress"
},

View File

@ -4,7 +4,7 @@ export interface Schema {
remote: string;
remoteDirectory?: string;
projectNameAndRootFormat?: ProjectNameAndRootFormat;
e2eTestRunner?: 'cypress' | 'none';
e2eTestRunner?: 'cypress' | 'playwright' | 'none';
host?: string;
linter?: Linter;
skipFormat?: boolean;

View File

@ -68,7 +68,7 @@
},
"e2eTestRunner": {
"type": "string",
"enum": ["cypress", "none"],
"enum": ["cypress", "playwright", "none"],
"description": "Test runner to use for end to end (e2e) tests.",
"default": "cypress"
},

View File

@ -8,7 +8,7 @@ export interface Schema {
devServerPort?: number;
directory?: string;
projectNameAndRootFormat?: ProjectNameAndRootFormat;
e2eTestRunner: 'cypress' | 'none';
e2eTestRunner: 'cypress' | 'playwright' | 'none';
globalCss?: boolean;
js?: boolean;
linter: Linter;

View File

@ -99,7 +99,7 @@
},
"e2eTestRunner": {
"type": "string",
"enum": ["cypress", "none"],
"enum": ["cypress", "playwright", "none"],
"description": "Test runner to use for end to end (e2e) tests.",
"default": "cypress"
},

View File

@ -9,7 +9,7 @@ export interface Schema {
devServerPort?: number;
directory?: string;
projectNameAndRootFormat?: ProjectNameAndRootFormat;
e2eTestRunner: 'cypress' | 'none';
e2eTestRunner: 'cypress' | 'playwright' | 'none';
globalCss?: boolean;
host?: string;
js?: boolean;

View File

@ -105,7 +105,7 @@
},
"e2eTestRunner": {
"type": "string",
"enum": ["cypress", "none"],
"enum": ["cypress", "playwright", "none"],
"description": "Test runner to use for end to end (e2e) tests.",
"default": "cypress"
},