mirror of
https://github.com/toeverything/AFFiNE.git
synced 2025-01-04 23:32:31 +03:00
24 lines
595 B
TypeScript
24 lines
595 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
import { getDataCenter } from './utils.js';
|
|
|
|
import 'fake-indexeddb/auto';
|
|
|
|
test.describe('Cloud Sync', () => {
|
|
test('get cloud the sync flag of workspace', async () => {});
|
|
|
|
test('enable [cloud sync feature]', async () => {});
|
|
|
|
test('close [cloud sync feature]', async () => {});
|
|
|
|
test('editor cloud storage', async () => {});
|
|
|
|
test('cloud sync is in-progress', async () => {});
|
|
|
|
test('cloud sync is completed', async () => {});
|
|
|
|
test('cloud sync is error', async () => {});
|
|
|
|
test('cloud storage is right', async () => {});
|
|
});
|