mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 05:14:54 +00:00
chore: bump version (#3947)
This commit is contained in:
@@ -10,10 +10,10 @@
|
||||
"devDependencies": {
|
||||
"@affine-test/fixtures": "workspace:*",
|
||||
"@affine-test/kit": "workspace:*",
|
||||
"@blocksuite/block-std": "0.0.0-20230824081236-b25a3da9-nightly",
|
||||
"@blocksuite/blocks": "0.0.0-20230824081236-b25a3da9-nightly",
|
||||
"@blocksuite/global": "0.0.0-20230824081236-b25a3da9-nightly",
|
||||
"@blocksuite/store": "0.0.0-20230824081236-b25a3da9-nightly",
|
||||
"@blocksuite/block-std": "0.0.0-20230824205952-3df3727b-nightly",
|
||||
"@blocksuite/blocks": "0.0.0-20230824205952-3df3727b-nightly",
|
||||
"@blocksuite/global": "0.0.0-20230824205952-3df3727b-nightly",
|
||||
"@blocksuite/store": "0.0.0-20230824205952-3df3727b-nightly",
|
||||
"@playwright/test": "^1.37.0",
|
||||
"express": "^4.18.2",
|
||||
"http-proxy-middleware": "^3.0.0-beta.1",
|
||||
|
||||
@@ -9,10 +9,10 @@
|
||||
"devDependencies": {
|
||||
"@affine-test/fixtures": "workspace:*",
|
||||
"@affine-test/kit": "workspace:*",
|
||||
"@blocksuite/block-std": "0.0.0-20230824081236-b25a3da9-nightly",
|
||||
"@blocksuite/blocks": "0.0.0-20230824081236-b25a3da9-nightly",
|
||||
"@blocksuite/global": "0.0.0-20230824081236-b25a3da9-nightly",
|
||||
"@blocksuite/store": "0.0.0-20230824081236-b25a3da9-nightly",
|
||||
"@blocksuite/block-std": "0.0.0-20230824205952-3df3727b-nightly",
|
||||
"@blocksuite/blocks": "0.0.0-20230824205952-3df3727b-nightly",
|
||||
"@blocksuite/global": "0.0.0-20230824205952-3df3727b-nightly",
|
||||
"@blocksuite/store": "0.0.0-20230824205952-3df3727b-nightly",
|
||||
"@playwright/test": "^1.37.0",
|
||||
"express": "^4.18.2",
|
||||
"http-proxy-middleware": "^3.0.0-beta.1",
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
import { test } from '@affine-test/kit/playwright';
|
||||
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
||||
import {
|
||||
clickPageMoreActions,
|
||||
waitEditorLoad,
|
||||
} from '@affine-test/kit/utils/page-logic';
|
||||
import { expect } from '@playwright/test';
|
||||
|
||||
test('Click import page item', async ({ page }) => {
|
||||
await openHomePage(page);
|
||||
await waitEditorLoad(page);
|
||||
await clickPageMoreActions(page);
|
||||
const importItem = page.getByTestId('editor-option-menu-import');
|
||||
await importItem.click();
|
||||
const importModal = page.locator('import-page');
|
||||
|
||||
expect(await importModal.isVisible()).toBe(true);
|
||||
});
|
||||
Reference in New Issue
Block a user