Skip to content

Commit

Permalink
websocket_test.ts aktualisieren
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent authored Dec 2, 2023
1 parent c129d8c commit 9988344
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/websocket_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ const { I} = inject();
Feature('Web socket');

Scenario('Web Socket', async () => {
await I.amOnPage('https://websocketstest.com/');
I.amOnPage('https://websocketstest.com/');
I.waitForText('Work for You!');
const wsMessages = await I.grabWebSocketMessages();
await I.expectContain(wsMessages, 'RECEIVED ID');
I.expectContain(wsMessages, 'RECEIVED ID');
});

0 comments on commit 9988344

Please sign in to comment.