mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 04:21:56 +03:00
18 lines
462 B
TypeScript
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 () => {});
|
|
});
|