Turbo v2 (#32)

Updated to Turbo v2, and updated dependencies.
This commit is contained in:
Giancarlo Buomprisco
2024-06-06 15:36:16 +07:00
committed by GitHub
parent aba9076805
commit c9f0ec5d89
22 changed files with 399 additions and 709 deletions

View File

@@ -30,8 +30,6 @@ test.describe('Auth flow', () => {
await auth.visitConfirmEmailLink(email);
await page.waitForURL('**/home');
expect(page.url()).toContain('http://localhost:3000/home');
});
test('will sign-in with the correct credentials', async ({ page }) => {

View File

@@ -46,7 +46,7 @@ export class Mailbox {
deleteAfter: boolean;
},
) {
const url = `http://localhost:54324/api/v1/mailbox/${mailbox}`;
const url = `http://127.0.0.1:54324/api/v1/mailbox/${mailbox}`;
const response = await fetch(url);