Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/tests/frontend-new/specs/pad_settings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ test.describe('creator-owned pad settings', () => {
await expect(page.locator('#options-colorscheck')).not.toBeChecked();
});

test('disabling chat suppresses chat gritter notifications', async ({page, browser}) => {
test('disabling chat suppresses chat gritter notifications', {
tag: '@feature:chat',
}, async ({page, browser}) => {
const padId = await goToNewPad(page);
const context2 = await browser.newContext();
const page2 = await context2.newPage();
Expand All @@ -164,7 +166,9 @@ test.describe('creator-owned pad settings', () => {
// #7592: ticking "Disable chat" must visibly disable the dependent
// "Chat always on screen" / "Show Chat and Users" toggles, not just
// make the underlying inputs non-interactive.
test('disabling chat disables and visually greys the dependent chat toggles', async ({page}) => {
test('disabling chat disables and visually greys the dependent chat toggles', {
tag: '@feature:chat',
}, async ({page}) => {
await goToNewPad(page);
await showSettings(page);

Expand Down
Loading