mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 14:11:34 +03:00
15dd20ef48
- Added a simple abstraction of persistent storage class. - Different persistence solutions are provided for web and client. - web: stored in localStorage - client: stored in the application directory as `.json` file - Define persistent app-config schema - Add a new hook that can interactive with persistent-app-config reactively
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
import { resolve } from 'node:path';
|
|
|
|
import { test, testResultDir } from '@affine-test/kit/playwright';
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
|
import { waitForEditorLoad } from '@affine-test/kit/utils/page-logic';
|
|
import { expect } from '@playwright/test';
|
|
|
|
test.use({
|
|
colorScheme: 'light',
|
|
});
|
|
|
|
// default could be anything, according to the system
|
|
test('default white', async ({ page }) => {
|
|
await openHomePage(page);
|
|
await waitForEditorLoad(page);
|
|
const root = page.locator('html');
|
|
const themeMode = await root.evaluate(element => element.dataset.theme);
|
|
expect(themeMode).toBe('light');
|
|
await page.screenshot({
|
|
path: resolve(testResultDir, 'affine-light-theme.png'),
|
|
});
|
|
await page.getByTestId('settings-modal-trigger').click();
|
|
await page.getByTestId('appearance-panel-trigger').click();
|
|
await page.waitForTimeout(50);
|
|
await page.getByTestId('dark-theme-trigger').click();
|
|
const darkMode = await root.evaluate(element => element.dataset.theme);
|
|
expect(darkMode).toBe('dark');
|
|
await page.screenshot({
|
|
path: resolve(testResultDir, 'affine-dark-theme.png'),
|
|
});
|
|
});
|