Skip to content

Commit

Permalink
test type
Browse files Browse the repository at this point in the history
  • Loading branch information
bob2402 committed Apr 29, 2024
1 parent 22aefb6 commit e2d2215
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ Deno.test("NIP-11: Relay Information Document", async (t) => {
const json = await queryGql(relay, query);
assertEquals(json.data.relayInformation, {
name: "Nostr Relay2",
icon: null,
contact: null,
description: null,
icon: undefined,
contact: undefined,
description: undefined,
pubkey: test_ctx.publicKey,
...not_modifiable_information,
});
Expand All @@ -260,9 +260,9 @@ Deno.test("NIP-11: Relay Information Document", async (t) => {
const json = await queryGql(relay, query, variables);
assertEquals(json.data.set_relay_information, {
name: "Nostr Relay3",
icon: null,
contact: null,
description: null,
icon: undefined,
contact: undefined,
description: undefined,
pubkey: test_ctx.publicKey,
...not_modifiable_information,
});
Expand Down

0 comments on commit e2d2215

Please sign in to comment.