diff options
author | HampusM <hampus@hampusmat.com> | 2021-08-02 17:37:52 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-08-02 17:37:52 +0200 |
commit | bc523758434a2376bb9c469b5259d82ceb1cda03 (patch) | |
tree | da07a65fe56aff3b8aef9f59421129cd8b12c5c6 | |
parent | 6483962a67429b25959a61d56f1d460b2e23c951 (diff) |
Fixed the tree unit test
-rw-r--r-- | test/unit/tree.unit.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/tree.unit.test.ts b/test/unit/tree.unit.test.ts index 3fe49f3..1cbc85a 100644 --- a/test/unit/tree.unit.test.ts +++ b/test/unit/tree.unit.test.ts @@ -57,7 +57,7 @@ describe("Tree", () => { it("Should find out if an existent path exists and return true", async() => { expect.assertions(1); - await expect(tree.findExists("packages/shared_types/package.json")).resolves.toBeTruthy(); + await expect(tree.findExists("packages/api/package.json")).resolves.toBeTruthy(); }); it("Should find out if a nonexistent path exists and return false", async() => { |