mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 13:25:12 +00:00
18 lines
431 B
TypeScript
18 lines
431 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
import { getDataCenter } from './utils.js';
|
|
|
|
import 'fake-indexeddb/auto';
|
|
|
|
test.describe('cloud-sync', () => {
|
|
test('get cloud sync flag of workspace ', async () => {});
|
|
|
|
test('enable cloud sync feature', async () => {});
|
|
|
|
test('close cloud sync feature', async () => {});
|
|
|
|
test('editor collaborate', async () => {});
|
|
|
|
test('editor cloud storage', async () => {});
|
|
});
|