Skip to content

Commit

Permalink
fixes flaky tests (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
GabiGrin authored Oct 6, 2024
1 parent bcc5bfb commit 8dfac66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resolver/src/resolver/resolveFlow.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -321,15 +321,15 @@ describe("resolver", () => {
n.subject.next(2);

assert.equal(s.lastCall.args[0], 2 + 1 + 2);
}).timeout(20);
});

it("properly resolves recursions", async () => {
const path = getFixturePath("recursive.flyde");

assert.doesNotThrow(() => {
resolveFlowByPath(path);
});
}).timeout(20);
});

it("resolves dependencies of inline nodes", async () => {
const flow = resolveFlowByPath(
Expand Down

0 comments on commit 8dfac66

Please sign in to comment.