Skip to content

Commit b9555f3

Browse files
committed
chore: fix wrong task to populate local registry
1 parent 7d068c5 commit b9555f3

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

e2e/nx-ktor-e2e/tests/nx-ktor.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ describe('nx-ktor e2e', () => {
6464
);
6565
expect(() =>
6666
checkFilesExist(
67-
`${directory}/gradlew`,
68-
`${directory}/build.gradle.kts`
69-
//`${directory}/src/main/kotlin/example/com/Application.kt` FIXME: bug in the generator, the package is not being created
67+
`${projectDirectory}/${directory}/gradlew`,
68+
`${projectDirectory}/${directory}/build.gradle.kts`
69+
//`${projectDirectory}/${directory}/src/main/kotlin/example/com/Application.kt` FIXME: bug in the generator, the package is not being created
7070
)
7171
).not.toThrow();
7272

e2e/nx-melos-e2e/tests/nx-melos.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { getPackageManagerCommand } from '@nx/devkit';
22
import {
33
checkFilesExist,
44
createTestProject,
5-
noFormat,
65
runNxCommandAsync,
76
} from '@nxrocks/common/testing';
87
import { execSync } from 'child_process';
@@ -72,7 +71,7 @@ describe('nx-melos e2e', () => {
7271
const end = new Date().getTime();
7372
console.log(`${script.name} took ${end - start}ms`);
7473
totalExecutorsTime += end - start;
75-
expect(noFormat(result.stdout)).toContain(script.output);
74+
expect(result.stdout).toContain(script.output);
7675
}
7776
console.log(`Total executors time: ${totalExecutorsTime}ms`);
7877

nx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"e2e-ci--**/**": {
6969
"inputs": ["e2eInputs", "^production"],
7070
"parallelism": false,
71-
"dependsOn": ["@nx/nx-source:populate-local-registry-storage"]
71+
"dependsOn": ["nxrocks:populate-local-registry"]
7272
},
7373
"nx-release-publish": {
7474
"options": {

0 commit comments

Comments
 (0)