mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
16 lines
309 B
TypeScript
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 () => {});
|
|
});
|