Skip to content

Commit

Permalink
chore: Remove flag for updating test snapshots from script for local …
Browse files Browse the repository at this point in the history
…deployment (#19929)
  • Loading branch information
pawelfras authored Jan 24, 2025
1 parent bdfdae1 commit 62cf211
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/schematics/testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,21 +173,21 @@ 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',
}
)
);
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',
}
Expand Down

0 comments on commit 62cf211

Please sign in to comment.