Skip to content

Commit bda2004

Browse files
committed
test
1 parent 0ee35fd commit bda2004

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/agent-starter/tests/Deeplink.test.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe("Deeplink Tests", () => {
55
test("If no dm created, create one", async () => {
66
const xmtp = new XMTP();
77
await xmtp.init();
8-
console.log("address", xmtp.address);
8+
99
if (!xmtp.address) {
1010
expect(xmtp.address).toBeUndefined();
1111
return;
@@ -15,12 +15,11 @@ describe("Deeplink Tests", () => {
1515
expect(inboxId).toBeUndefined();
1616
return;
1717
}
18-
console.log("inboxId", inboxId);
18+
1919
let dm = xmtp.client?.conversations.getDmByInboxId(inboxId);
2020
console.log("dm", dm);
2121
if (!dm) {
2222
const dmGroup = await xmtp.client?.conversations.newDm(xmtp.address);
23-
console.log("dmGroup", dmGroup);
2423
dm = dmGroup;
2524
}
2625
console.log("dm", dm?.id);

0 commit comments

Comments
 (0)