Skip to content

Commit

Permalink
make the test point at dev
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Mar 13, 2024
1 parent bffdad6 commit 7a4552d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/src/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -849,9 +849,9 @@ test('can stream all messages', async () => {
})

test('can stream all msgs with delay', async () => {
const bo = await Client.createRandom({ env: 'local' })
const bo = await Client.createRandom({ env: 'dev' })
await delayToPropogate()
const alix = await Client.createRandom({ env: 'local' })
const alix = await Client.createRandom({ env: 'dev' })
await delayToPropogate()

// Record message stream across all conversations
Expand All @@ -876,7 +876,7 @@ test('can stream all msgs with delay', async () => {

await sleep(15000)
// Starts a new conversation.
const caro = await Client.createRandom({ env: 'local' })
const caro = await Client.createRandom({ env: 'dev' })
const caroConvo = await caro.conversations.newConversation(alix.address)
await delayToPropogate()

Expand Down

0 comments on commit 7a4552d

Please sign in to comment.