Skip to content

Commit 3e7d7dd

Browse files
committed
name test
1 parent 77265de commit 3e7d7dd

File tree

6 files changed

+2
-2
lines changed

6 files changed

+2
-2
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function getTestCases(router: ReturnType<typeof createRouter>) {
4545
import("./test-suites/requires-with-argument/index.js"),
4646
import("./test-suites/keys-mashup/index.js"),
4747
import("./test-suites/null-keys/index.js"),
48-
import("./test-suites/i-will-name-you-later/index.js"),
48+
import("./test-suites/requires-circular/index.js"),
4949
].map((i) => i.then((e) => e.default))
5050
);
5151

src/test-suites/i-will-name-you-later/index.ts renamed to src/test-suites/requires-circular/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ import a from "./a.subgraph.js";
33
import b from "./b.subgraph.js";
44
import test from "./test.js";
55

6-
export default serve("i-will-name-you-later", [a, b], test);
6+
export default serve("requires-circular", [a, b], test);

0 commit comments

Comments
 (0)