bigbluebutton-Github/bigbluebutton-tests/playwright/options/options.spec.js

38 lines
1.2 KiB
JavaScript
Raw Normal View History

const { test } = require('../fixtures');
const { fullyParallel } = require('../playwright.config');
2022-08-15 21:37:54 +08:00
const { Options } = require('./options');
const { initializePages } = require('../core/helpers');
2024-03-13 21:28:39 +08:00
const { encodeCustomParams } = require('../parameters/util');
const { PARAMETER_HIDE_PRESENTATION_TOAST } = require('../core/constants');
const hidePresentationToast = encodeCustomParams(PARAMETER_HIDE_PRESENTATION_TOAST);
test.describe('Options', () => {
2023-04-24 20:44:25 +08:00
const options = new Options();
test.describe.configure({ mode: fullyParallel ? 'parallel' : 'serial' });
test[fullyParallel ? 'beforeEach' : 'beforeAll'](async ({ browser }) => {
await initializePages(options, browser, { joinParameter: hidePresentationToast });
2023-04-25 04:52:47 +08:00
});
2023-04-24 20:44:25 +08:00
test('Open about modal', async () => {
await options.openedAboutModal();
});
2022-09-12 20:33:53 +08:00
2023-04-24 20:44:25 +08:00
test('Open Help Button', async () => {
await options.openHelp();
2023-04-24 20:44:25 +08:00
});
2023-04-25 04:52:47 +08:00
test('Locales test', async () => {
await options.localesTest();
});
2022-11-11 04:25:18 +08:00
2024-07-08 21:42:57 +08:00
test('Dark mode', { tag: ['@ci', '@flaky'] }, async () => {
2023-04-25 04:52:47 +08:00
await options.darkMode();
2022-11-11 04:25:18 +08:00
});
2023-01-19 00:29:45 +08:00
2024-07-08 21:42:57 +08:00
test('Font size', { tag: ['@ci', '@flaky'] }, async () => {
2023-04-25 04:52:47 +08:00
await options.fontSizeTest();
2023-01-19 00:29:45 +08:00
});
});