AFFiNE/packages/data-center/tests/auth.spec.ts
2023-01-03 22:43:04 +08:00

16 lines
308 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 () => {});
});