We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc982d9 commit e4623fcCopy full SHA for e4623fc
packages/core/src/node.test.ts
@@ -34,10 +34,13 @@ Deno.test("node children", async () => {
34
assertSuccessfullResolution(resolution);
35
console.log(resolution.uri.toString());
36
37
- assertEquals(resolution.children.length, 1);
+ assertEquals(resolution.children.length, 2);
38
assertEquals(
39
- resolution.children[0].toString(),
40
- "com.atproto.repo.strongRef",
+ resolution.children.map((nsid) => nsid.toString()),
+ [
41
+ "com.atproto.label.defs",
42
+ "com.atproto.repo.strongRef",
43
+ ],
44
);
45
});
46
0 commit comments