test: add e2e test for validation of editor version

This commit is contained in:
tzhangchi
2023-01-02 00:14:57 +08:00
committed by Chi Zhang
parent bc1b3fbf22
commit c93a3ec5e1
3 changed files with 44 additions and 9 deletions

24
tests/console.spec.ts Normal file
View File

@@ -0,0 +1,24 @@
import { test, expect } from '@playwright/test';
import { loadPage } from './libs/load-page';
import pkg from './../packages/app/package.json';
loadPage();
test.describe('web console', () => {
test('editor version', async ({ page }) => {
// https://playwright.dev/docs/evaluating
// https://github.com/microsoft/playwright/issues/13059
// Get the handle to a specific function.
// const getEditoVersionHandle = await page.evaluate(
// 'window.__getEditoVersion'
// );
//Later on, call this function with some arguments.
// const msg = await getEditoVersionHandle.evaluate((post, args) => post);
// console.log(getEditoVersionHandle);
const documentEditorVersion = await page.inputValue('input#editor-version');
const pkgEditorVersion = pkg.dependencies['@blocksuite/editor'];
expect(documentEditorVersion).toBe(pkgEditorVersion);
console.log('pkgEditorVersion', pkgEditorVersion);
});
});