AFFiNE/packages/data-center/tests/cloud/permission.spec.ts
2023-01-03 22:58:54 +08:00

18 lines
462 B
TypeScript

import { test, expect } from '@playwright/test';
import { getDataCenter } from '../utils.js';
import 'fake-indexeddb/auto';
test.describe('Permission', () => {
test('get the public of workspace', async () => {});
test('make workspace public', async () => {});
test('make workspace private', async () => {});
test('un-login user open the public workspace ', async () => {});
test('un-login user open the private workspace ', async () => {});
});