We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ee35fd commit bda2004Copy full SHA for bda2004
packages/agent-starter/tests/Deeplink.test.ts
@@ -5,7 +5,7 @@ describe("Deeplink Tests", () => {
5
test("If no dm created, create one", async () => {
6
const xmtp = new XMTP();
7
await xmtp.init();
8
- console.log("address", xmtp.address);
+
9
if (!xmtp.address) {
10
expect(xmtp.address).toBeUndefined();
11
return;
@@ -15,12 +15,11 @@ describe("Deeplink Tests", () => {
15
expect(inboxId).toBeUndefined();
16
17
}
18
- console.log("inboxId", inboxId);
19
let dm = xmtp.client?.conversations.getDmByInboxId(inboxId);
20
console.log("dm", dm);
21
if (!dm) {
22
const dmGroup = await xmtp.client?.conversations.newDm(xmtp.address);
23
- console.log("dmGroup", dmGroup);
24
dm = dmGroup;
25
26
console.log("dm", dm?.id);
0 commit comments