remove .only from breakout

This commit is contained in:
Gabriel Porfirio 2023-11-30 14:15:39 -03:00
parent ffc07c03e9
commit 656f791f71
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ test.describe.parallel('Breakout', () => {
await create.changeRoomsName();
});
test.only('Remove and reset assignments @ci @flaky', async ({ browser, context, page }) => {
test('Remove and reset assignments @ci @flaky', async ({ browser, context, page }) => {
const create = new Create(browser, context);
await create.initPages(page);
await create.removeAndResetAssignments();

View File

@ -90,7 +90,7 @@ class Create extends MultiUsers {
//Reset assignments
await this.modPage.waitAndClick(e.randomlyAssign);
await this.modPage.hasText(e.breakoutBox2, /Attendee/);
await this.modPage.hasText(e.breakoutBox1, /Attendee/);
await this.modPage.waitAndClick(e.resetAssignments);
await this.modPage.hasText(e.breakoutBox0, /Attendee/);