Skip to content

Commit

Permalink
chore(core): add e2e test case
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez committed Feb 23, 2023
1 parent 8c52e93 commit d10add2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions e2e/nx-run/src/run.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,13 @@ describe('Nx Running Tests', () => {
runCLI(`build ${myapp}`);
}, 10000);

it('should support project name positional arg non-consecutive to target', () => {
const myapp = uniq('app');
runCLI(`generate @nrwl/web:app ${myapp}`);

runCLI(`build --verbose ${myapp}`);
}, 10000);

it('should run targets from package json', () => {
const myapp = uniq('app');
const target = uniq('script');
Expand Down

0 comments on commit d10add2

Please sign in to comment.