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

18 lines
454 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('unlogin user open the public workspace ', async () => {});
test('unlogin user open the private workspace ', async () => {});
});