Skip to content

Commit

Permalink
more lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Dec 2, 2023
1 parent 1911367 commit 8f98b40
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions example/src/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -678,12 +678,12 @@ test('canManagePreferences', async () => {
test('is address on the XMTP network', async () => {
const alix = await Client.createRandom({ env: 'local' })
const notOnNetwork = '0x0000000000000000000000000000000000000000'
const isAlixAddressAvailable = await Client.canMessage(alix.address, {
env: 'local'

const isAlixAddressAvailable = await Client.canMessage(alix.address, {
env: 'local',
})
const isAddressAvailable = await Client.canMessage(notOnNetwork, {
env: 'local'
const isAddressAvailable = await Client.canMessage(notOnNetwork, {
env: 'local',
})

if (!isAlixAddressAvailable) {
Expand All @@ -695,7 +695,7 @@ test('is address on the XMTP network', async () => {
}

return true
});
})

test('register and use custom content types', async () => {
const bob = await Client.createRandom({
Expand Down

0 comments on commit 8f98b40

Please sign in to comment.