We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62dd36e commit 286ba68Copy full SHA for 286ba68
1 file changed
packages/shared/src/openApi/shared/utils/__tests__/graph.test.ts
@@ -62,10 +62,5 @@ describe('buildGraph', () => {
62
63
expect(Array.from(graph.subtreeDependencies.get(a)!).sort()).toEqual([b].sort());
64
expect(Array.from(graph.transitiveDependencies.get(a)!).sort()).toEqual([b].sort());
65
- // reverseNodeDependencies should record that b is referenced by the property child as well
66
- expect(graph.reverseNodeDependencies.get(b)).toBeDefined();
67
- expect(Array.from(graph.reverseNodeDependencies.get(b)!).some((p) => p.startsWith(a))).toBe(
68
- true,
69
- );
70
});
71
0 commit comments