import { auth } from '../../../src/web/auth/index'; describe('test src/web/auth/index.ts', () => { it('test auth', () => { const user = auth.currentUser; expect(user).toMatchObject({ type: '', }); }) })