mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 20:41:53 +03:00
14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
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 () => {});
|
|
});
|