2022-08-15 20:37:52 +08:00
|
|
|
const { test } = require('@playwright/test');
|
2023-09-01 04:21:48 +08:00
|
|
|
const { fullyParallel } = require('../playwright.config');
|
2022-08-15 21:37:54 +08:00
|
|
|
const { Options } = require('./options');
|
2022-08-15 20:37:52 +08:00
|
|
|
|
2023-09-01 04:21:48 +08:00
|
|
|
if (!fullyParallel) test.describe.configure({ mode: 'serial' });
|
|
|
|
|
|
|
|
test.describe('Options', () => {
|
2023-04-24 20:44:25 +08:00
|
|
|
const options = new Options();
|
2023-04-25 21:25:23 +08:00
|
|
|
let context;
|
2023-04-25 04:52:47 +08:00
|
|
|
test.beforeAll(async ({ browser }) => {
|
2023-04-25 21:25:23 +08:00
|
|
|
context = await browser.newContext();
|
2023-04-24 20:44:25 +08:00
|
|
|
const page = await context.newPage();
|
|
|
|
await options.initModPage(page, true);
|
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-08-15 20:37:52 +08:00
|
|
|
});
|
2022-09-12 20:33:53 +08:00
|
|
|
|
2023-04-24 20:44:25 +08:00
|
|
|
test('Open Help Button', async () => {
|
2023-04-25 21:25:23 +08:00
|
|
|
await options.openHelp(context);
|
2023-04-24 20:44:25 +08:00
|
|
|
});
|
|
|
|
|
2023-04-25 04:52:47 +08:00
|
|
|
test('Locales test', async () => {
|
|
|
|
await options.localesTest();
|
2022-08-15 20:37:52 +08:00
|
|
|
});
|
2022-11-11 04:25:18 +08:00
|
|
|
|
2023-05-19 21:11:24 +08:00
|
|
|
test('Dark mode @ci', 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
|
|
|
|
2023-05-19 21:11:24 +08:00
|
|
|
test('Font size @ci', async () => {
|
2023-04-25 04:52:47 +08:00
|
|
|
await options.fontSizeTest();
|
2023-01-19 00:29:45 +08:00
|
|
|
});
|
2023-04-04 04:21:24 +08:00
|
|
|
});
|