mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 05:31:35 +03:00
5b0b8cf216
test(e2e): add subdoc migration test fix: remove .only
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { patchDataEnhancement } from '@affine-test/kit/e2e-enhance/initializer';
|
|
import { SnapshotStorage } from '@affine-test/kit/e2e-enhance/snapshot';
|
|
import { test } from '@affine-test/kit/playwright';
|
|
import {
|
|
clickNewPageButton,
|
|
waitForEditorLoad,
|
|
} from '@affine-test/kit/utils/page-logic';
|
|
|
|
test.beforeEach(async ({ page }) => {
|
|
await patchDataEnhancement(page);
|
|
});
|
|
|
|
test('record 0.6.1-beta.1 legacy data', async ({ page }) => {
|
|
await page.goto('http://localhost:8081/');
|
|
await waitForEditorLoad(page);
|
|
await clickNewPageButton(page);
|
|
const locator = page.locator('v-line').nth(0);
|
|
await locator.fill('hello');
|
|
|
|
await page.keyboard.press('Enter');
|
|
await page.keyboard.type('TEST CONTENT', { delay: 50 });
|
|
|
|
const localStorageData = await page.evaluate(() =>
|
|
window.readAffineLocalStorage()
|
|
);
|
|
const { idbData, binaries } = await page.evaluate(() =>
|
|
window.readAffineDatabase()
|
|
);
|
|
|
|
const snapshotStorage = new SnapshotStorage('0.6.1-beta.1');
|
|
await snapshotStorage.write({
|
|
idbData,
|
|
localStorageData,
|
|
binaries,
|
|
});
|
|
});
|