AFFiNE/packages/data-center/tests/auth.spec.ts

16 lines
308 B
TypeScript
Raw Normal View History

2023-01-03 17:16:15 +03:00
import { test, expect } from '@playwright/test';
import { getDataCenter } from './utils.js';
import 'fake-indexeddb/auto';
test.describe('auth', () => {
2023-01-03 17:43:04 +03:00
test('sign in', async () => {});
2023-01-03 17:16:15 +03:00
2023-01-03 17:43:04 +03:00
test('sign out', async () => {});
2023-01-03 17:16:15 +03:00
test('isLogin', async () => {});
test('getUserInfo', async () => {});
});