-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into update-backend-packages-2024-06-30
- Loading branch information
Showing
7 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Feature: Tables | ||
As a user | ||
I want to enter the room reachable via the central worldcafe button, | ||
so that I can interact with other users in video conferences | ||
|
||
Scenario: Worldcafe Enter Room | ||
Given I navigate to page '/signin' | ||
When I submit the credentials 'akadmin' 'dreammall' | ||
Then I am on page 'worldcafe' | ||
When I click the enter my room button | ||
Then My room is queried |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { Then, When } from '@badeball/cypress-cucumber-preprocessor' | ||
|
||
// eslint-disable-next-line import/no-relative-parent-imports | ||
import { worldcafePage } from '../pages/WorldcafePage' | ||
|
||
When('I click the enter my room button', () => { | ||
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access | ||
worldcafePage.enterMyRoom() | ||
}) | ||
|
||
Then('My room is queried', () => { | ||
cy.wait('@postJoinMyRoomQuery') | ||
}) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.