2023-04-17 00:02:41 +03:00
|
|
|
import { resolve } from 'node:path';
|
|
|
|
|
2023-04-28 09:40:44 +03:00
|
|
|
import { test, testResultDir } from '@affine-test/kit/playwright';
|
2023-07-13 12:05:01 +03:00
|
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
|
|
|
import { waitEditorLoad } from '@affine-test/kit/utils/page-logic';
|
2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
2023-02-17 10:33:32 +03:00
|
|
|
|
2023-04-28 09:40:44 +03:00
|
|
|
// default could be anything, according to the system
|
2023-04-17 00:02:41 +03:00
|
|
|
test('default white', async ({ browser }) => {
|
|
|
|
const context = await browser.newContext({
|
|
|
|
colorScheme: 'light',
|
2022-11-10 15:51:06 +03:00
|
|
|
});
|
2023-04-17 00:02:41 +03:00
|
|
|
const page = await context.newPage();
|
|
|
|
await openHomePage(page);
|
2023-06-07 12:31:54 +03:00
|
|
|
await waitEditorLoad(page);
|
2023-04-17 00:02:41 +03:00
|
|
|
const root = page.locator('html');
|
|
|
|
const themeMode = await root.evaluate(element =>
|
|
|
|
element.getAttribute('data-theme')
|
|
|
|
);
|
|
|
|
expect(themeMode).toBe('light');
|
2023-04-28 09:40:44 +03:00
|
|
|
await page.screenshot({
|
2023-04-17 00:02:41 +03:00
|
|
|
path: resolve(testResultDir, 'affine-light-theme.png'),
|
|
|
|
});
|
2023-04-28 12:28:51 +03:00
|
|
|
await page.getByTestId('editor-option-menu').click();
|
2023-04-17 00:02:41 +03:00
|
|
|
await page.getByTestId('change-theme-dark').click();
|
|
|
|
await page.waitForTimeout(50);
|
2023-04-28 09:40:44 +03:00
|
|
|
await page.screenshot({
|
2023-04-17 00:02:41 +03:00
|
|
|
path: resolve(testResultDir, 'affine-dark-theme.png'),
|
|
|
|
});
|
2022-11-10 15:51:06 +03:00
|
|
|
});
|