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

20 lines
463 B
TypeScript

import { test, expect } from '@playwright/test';
import { getDataCenter } from './utils.js';
import 'fake-indexeddb/auto';
test.describe('share', () => {
test('get the public of workspace', async () => {});
test('make workspace public', async () => {});
test('make workspace private', async () => {});
test('invite member by email', async () => {});
test('accept invite member link', async () => {});
test('members list', async () => {});
});