Skip to content

Commit

Permalink
chore(linter): fix lock_file_changed error in e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez committed Nov 21, 2024
1 parent d90893a commit 2395bb2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions e2e/eslint/src/linter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -689,6 +689,7 @@ describe('Linter', () => {
runCLI(
`generate @nx/react:app --name=${myapp} --unitTestRunner=jest --directory="."`
);
runCLI('reset', { env: { CI: 'false' } });
verifySuccessfulStandaloneSetup(myapp);

let appEslint = readJson('.eslintrc.json');
Expand Down Expand Up @@ -723,6 +724,7 @@ describe('Linter', () => {
runCLI(
`generate @nx/angular:app --name=${myapp} --directory="." --no-interactive`
);
runCLI('reset', { env: { CI: 'false' } });
verifySuccessfulStandaloneSetup(myapp);

let appEslint = readJson('.eslintrc.json');
Expand Down Expand Up @@ -754,6 +756,7 @@ describe('Linter', () => {
runCLI(
`generate @nx/node:app --name=${myapp} --directory="." --no-interactive`
);
runCLI('reset', { env: { CI: 'false' } });
verifySuccessfulStandaloneSetup(myapp);

let appEslint = readJson('.eslintrc.json');
Expand Down

0 comments on commit 2395bb2

Please sign in to comment.