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

16 lines
309 B
TypeScript

import { test, expect } from '@playwright/test';
import { getDataCenter } from '../utils.js';
import 'fake-indexeddb/auto';
test.describe('Auth', () => {
test('sign in', async () => {});
test('sign out', async () => {});
test('isLogin', async () => {});
test('getUserInfo', async () => {});
});