Files
AFFiNE-Mirror/packages/data-center/tests/import-export.spec.ts
2023-01-03 22:20:01 +08:00

12 lines
258 B
TypeScript

import { test, expect } from '@playwright/test';
import { getDataCenter } from './utils.js';
import 'fake-indexeddb/auto';
test.describe('import export', () => {
test('import workspace', async () => {});
test('export workspace', async () => {});
});