feat(editor): add more open doc options to editor toolbar (#9588)

fix AF-2036, AF-2092
This commit is contained in:
pengx17
2025-01-09 08:04:21 +00:00
parent 890a962196
commit f78857bb11
41 changed files with 558 additions and 271 deletions
+2 -2
View File
@@ -28,8 +28,8 @@ test('open split view', async ({ page }) => {
await expect(page.getByTestId('split-view-label')).toHaveCount(2);
await expectTabTitle(page, 0, ['Untitled', 'hi from another page']);
// the second split view should be active
await expectActiveTab(page, 0, 1);
// the first split view should be active
await expectActiveTab(page, 0, 0);
// by clicking the first split view label, the first split view should be active
await page.getByTestId('split-view-label').nth(0).click();
+1
View File
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.web.json",
"compilerOptions": {
"composite": true,
"rootDir": "./e2e",
"outDir": "./dist",
"tsBuildInfoFile": "./dist/tsconfig.tsbuildinfo"