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 @@ -28,7 +28,9 @@ test.describe('creator-owned pad settings', () => {
await context2.close();
});

test('pad settings act as defaults until enforcement is enabled', async ({page, browser}) => {
test('pad settings act as defaults until enforcement is enabled', {
tag: '@feature:line-numbers',
}, async ({page, browser}) => {
const padId = await goToNewPad(page);

const context2 = await browser.newContext();
Expand Down Expand Up @@ -122,7 +124,9 @@ test.describe('creator-owned pad settings', () => {
await context2.close();
});

test('uses My View defaults for newly created pads without changing an existing pad default',
test('uses My View defaults for newly created pads without changing an existing pad default', {
tag: '@feature:line-numbers',
},
async ({page}) => {
await goToNewPad(page);
const creatorOuter = page.frameLocator('iframe[name="ace_outer"]').locator('#outerdocbody');
Expand Down
Loading