Skip to content

Commit 3c278d7

Browse files
test: remove test runner from test libs
1 parent d79750e commit 3c278d7

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

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)