mirror of
https://github.com/logto-io/logto.git
synced 2025-01-20 21:32:31 -05:00
162998f414
* chore(test): integration test update add dotenv * chore(core): update pnpm lock update pnpm lock * refactor(test): refactor integration test step 1 extract api, and orgnize test case following core/route structure * chore(test): update path update path * fix(test): update path update path * fix(test): cr update cr update
9 lines
283 B
TypeScript
9 lines
283 B
TypeScript
import { registerUserAndSignIn } from '@/helpers';
|
|
|
|
describe('username and password flow', () => {
|
|
it('should register and sign in with username and password successfully', async () => {
|
|
expect(async () => {
|
|
await registerUserAndSignIn();
|
|
}).not.toThrow();
|
|
});
|
|
});
|