From 62cf211db8908538482469d28fb833e59900974d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Fra=C5=9B?= Date: Fri, 24 Jan 2025 12:26:31 +0100 Subject: [PATCH] chore: Remove flag for updating test snapshots from script for local deployment (#19929) --- tools/schematics/testing.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/schematics/testing.ts b/tools/schematics/testing.ts index 8432e027a82..cfe645cfbbd 100644 --- a/tools/schematics/testing.ts +++ b/tools/schematics/testing.ts @@ -173,13 +173,13 @@ function buildSchematicsAndPublish(buildCmd: string): void { function testAllSchematics(): void { try { - execSync('npm --prefix projects/schematics run test --coverage -- -u', { + execSync('npm --prefix projects/schematics run test --coverage', { stdio: 'inherit', }); featureLibsFolders.forEach((lib) => execSync( - `npm --prefix feature-libs/${lib} run test:schematics --coverage -- -u`, + `npm --prefix feature-libs/${lib} run test:schematics --coverage`, { stdio: 'inherit', } @@ -187,7 +187,7 @@ function testAllSchematics(): void { ); integrationLibsFolders.forEach((lib) => execSync( - `npm --prefix integration-libs/${lib} run test:schematics --coverage -- -u`, + `npm --prefix integration-libs/${lib} run test:schematics --coverage`, { stdio: 'inherit', }