Skip to content

Commit e4623fc

Browse files
committed
Fix tests
1 parent cc982d9 commit e4623fc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/core/src/node.test.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,13 @@ Deno.test("node children", async () => {
3434
assertSuccessfullResolution(resolution);
3535
console.log(resolution.uri.toString());
3636

37-
assertEquals(resolution.children.length, 1);
37+
assertEquals(resolution.children.length, 2);
3838
assertEquals(
39-
resolution.children[0].toString(),
40-
"com.atproto.repo.strongRef",
39+
resolution.children.map((nsid) => nsid.toString()),
40+
[
41+
"com.atproto.label.defs",
42+
"com.atproto.repo.strongRef",
43+
],
4144
);
4245
});
4346

0 commit comments

Comments
 (0)