Skip to content

Commit

Permalink
test: remove test runner from test libs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheUnderScorer committed Mar 17, 2024
1 parent d79750e commit 3c278d7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/nx-semantic-release/src/tests/setup-test-repo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,13 @@ async function bootstrapTestProjectsAndLibs() {
runNxCommand(command);
});

testLibs.forEach((lib) => {
runNxCommand(`generate @nx/js:library libs/${lib}`);
});
await wait(500);

for (const lib of testLibs) {
runNxCommand(`generate @nx/js:library libs/${lib} --unit-test-runner=none`);

await wait(500);
}

createPackageJsonForProjects();
updateWorkspaceNxConfig();
Expand Down

0 comments on commit 3c278d7

Please sign in to comment.