refactor(editor): rename presets to integration test (#10340)

This commit is contained in:
Saul-Mirone
2025-02-21 06:26:03 +00:00
parent f79324b6a1
commit f3218ab3bc
116 changed files with 156 additions and 210 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import type { EditorHost } from '@blocksuite/block-std';
import type { AffineEditorContainer } from '@blocksuite/presets';
import type { TestAffineEditorContainer } from '@blocksuite/integration-test';
import type { BlockSchema, Blocks, Workspace, Transformer } from '@blocksuite/store';
import type { z } from 'zod';
import type * as Y from 'yjs';
@@ -12,7 +12,7 @@ declare global {
];
interface Window {
editor: AffineEditorContainer;
editor: TestAffineEditorContainer;
doc: Blocks;
collection: Workspace;
blockSchemas: z.infer<typeof BlockSchema>[];