14 lines
283 B
TypeScript
14 lines
283 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 () => {});
|
|
});
|