Skip to content

Commit

Permalink
Adding the required changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shech2 committed Jan 3, 2024
1 parent 744653c commit e322124
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aatp/peerbook_webrtc/admin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ test.describe('peerbook administration', () => {
await page.keyboard.press("Enter")
await sleep(100)
await page.keyboard.press("ArrowDown")
await page.evaluate(() => { terminal7.log('test') })
await page.evaluate(() => { terminal7.log("log line")})
await page.keyboard.press("Enter")
await sleep(100)
const twr2 = await getTWRBuffer(page)
Expand All @@ -374,5 +374,6 @@ test.describe('peerbook administration', () => {
expect(msg.count).toBe(1)
const body = msg.items[0].Content.Body
expect(body).toMatch(/test issue/)
expect(body).toMatch(/log line/)
})
})

0 comments on commit e322124

Please sign in to comment.