d30b806b47
* test: fix shortcuts, add flaky flag for test requiring graphql data, fix slide change for tldraw v2 * test: properly set the execution mode * test: use isMultiUser parameter inside options obj * test: fix banner color test * test: increase breakout test timeouts for user joining room * test: redo the change in the hide presentation on join test * test: change hide presentation steps and add flaky flag on it
36 lines
971 B
JavaScript
36 lines
971 B
JavaScript
const { test } = require('@playwright/test');
|
|
const { fullyParallel } = require('../playwright.config');
|
|
const { Options } = require('./options');
|
|
const { initializePages } = require('../core/helpers');
|
|
|
|
test.describe('Options', () => {
|
|
const options = new Options();
|
|
let context;
|
|
|
|
test.describe.configure({ mode: fullyParallel ? 'parallel' : 'serial' });
|
|
test[fullyParallel ? 'beforeEach' : 'beforeAll'](async ({ browser }) => {
|
|
const { context: innerContext } = await initializePages(options, browser);
|
|
context = innerContext;
|
|
});
|
|
|
|
test('Open about modal', async () => {
|
|
await options.openedAboutModal();
|
|
});
|
|
|
|
test('Open Help Button', async () => {
|
|
await options.openHelp(context);
|
|
});
|
|
|
|
test('Locales test', async () => {
|
|
await options.localesTest();
|
|
});
|
|
|
|
test('Dark mode @ci @flaky', async () => {
|
|
await options.darkMode();
|
|
});
|
|
|
|
test('Font size @ci @flaky', async () => {
|
|
await options.fontSizeTest();
|
|
});
|
|
});
|