Skip to content

Commit

Permalink
test: fix tests (#759)
Browse files Browse the repository at this point in the history
* test: fix tests

* build: work in progress

---------

Co-authored-by: khalilou88 <[email protected]>
  • Loading branch information
khalilou88 and khalilou88 authored Jan 12, 2024
1 parent 3ad6a77 commit 256df16
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,7 @@ describe('nx-maven maven-root-directory e2e', () => {
expect(depGraphJson.graph.dependencies[libName]).toContainEqual({
type: 'static',
source: libName,
target: parentProjectName,
target: libsParentProject,
});
}, 240000);

Expand Down Expand Up @@ -930,6 +930,12 @@ describe('nx-maven maven-root-directory e2e', () => {
target: parentProjectName,
});

expect(depGraphJson.graph.dependencies[appName]).toContainEqual({
type: 'static',
source: appName,
target: appsParentProject,
});

const process = await runNxCommandUntil(`serve ${appName}`, (output) =>
output.includes(`Server Running: http://localhost:8080`),
);
Expand Down

0 comments on commit 256df16

Please sign in to comment.