chore(react): skipFormat true when generating app in test (#15086)

This commit is contained in:
Katerina Skroumpelou 2023-02-17 17:01:21 +02:00 committed by GitHub
parent 7372d0bfed
commit 5c0a3f925f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -347,7 +347,7 @@ export async function createTestUIApp(
await applicationGenerator(appTree, {
e2eTestRunner: 'cypress',
linter: Linter.EsLint,
skipFormat: false,
skipFormat: true,
style: 'css',
unitTestRunner: 'none',
name: libName,

View File

@ -242,7 +242,7 @@ export async function createTestUILib(
await applicationGenerator(appTree, {
e2eTestRunner: 'none',
linter: Linter.EsLint,
skipFormat: false,
skipFormat: true,
style: 'css',
unitTestRunner: 'none',
name: `${libName}-e2e`,

View File

@ -61,7 +61,7 @@ export async function createTestUIApp(name: string): Promise<Tree> {
await applicationGenerator(tree, {
e2eTestRunner: 'none',
linter: Linter.EsLint,
skipFormat: false,
skipFormat: true,
style: 'css',
unitTestRunner: 'none',
name,