Skip to content

Commit

Permalink
fixes circular dep between stdlib tests and resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
GabiGrin committed Feb 4, 2024
1 parent 5dd9077 commit c3bf698
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions stdlib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
"react": "^18.2.0"
},
"devDependencies": {
"@flyde/resolver": "workspace:^",
"@types/jscodeshift": "^0.11.6",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
Expand Down Expand Up @@ -57,4 +56,4 @@
"prod": "node dist/index.js",
"__publish": "npm version patch && npm publish"
}
}
}
3 changes: 2 additions & 1 deletion stdlib/src/Values/Values.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import { assert } from "chai";

import { spiedOutput } from "@flyde/core/dist/test-utils";

import { resolveFlowByPath } from "@flyde/resolver";
// ugly hack to avoid a circular dependency with resolver
import { resolveFlowByPath } from "../../../resolver/dist";

describe.only("Values", () => {
describe("Code Expression", () => {
Expand Down

0 comments on commit c3bf698

Please sign in to comment.