Skip to content

Commit ec350e0

Browse files
test: remove test runner from test libs
1 parent a013a3a commit ec350e0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Diff for: packages/nx-semantic-release/src/tests/setup-test-repo.ts

+7-3
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,13 @@ async function bootstrapTestProjectsAndLibs() {
109109
runNxCommand(command);
110110
});
111111

112-
testLibs.forEach((lib) => {
113-
runNxCommand(`generate @nx/js:library libs/${lib}`);
114-
});
112+
await wait(500);
113+
114+
for (const lib of testLibs) {
115+
runNxCommand(`generate @nx/js:library libs/${lib} --unit-test-runner=none`);
116+
117+
await wait(500);
118+
}
115119

116120
createPackageJsonForProjects();
117121
updateWorkspaceNxConfig();

0 commit comments

Comments
 (0)