mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 04:18:54 +00:00
16 lines
354 B
TypeScript
16 lines
354 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
import { getDataCenter } from '../utils.js';
|
|
|
|
import 'fake-indexeddb/auto';
|
|
|
|
test.describe('Share', () => {
|
|
test('add(invite) member by email', async () => {});
|
|
|
|
test('accept invite member link', async () => {});
|
|
|
|
test('members list', async () => {});
|
|
|
|
test('delete member', async () => {});
|
|
});
|