AFFiNE/packages/data-center/tests/attachment.spec.ts

14 lines
282 B
TypeScript
Raw Normal View History

2023-01-03 17:16:15 +03:00
import { test, expect } from '@playwright/test';
import { getDataCenter } from './utils.js';
import 'fake-indexeddb/auto';
test.describe('attachment', () => {
test('upload blob', async () => {});
test('get blob', async () => {});
test('remove blob', async () => {});
});