diff --git a/README.md b/README.md index cac3ddc..5f31cad 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Fully featured Open-source URL Shortener > > | 🏗️ Current | 👉 Next | > |-------------|---------| -> | Pre-alpha | Alpha | +> | Alpha | Beta | ## Architecture diff --git a/e2e/tests/api.spec.ts b/e2e/tests/api.spec.ts index 9dea3d6..129ea66 100644 --- a/e2e/tests/api.spec.ts +++ b/e2e/tests/api.spec.ts @@ -1,6 +1,6 @@ import {expect, test, describe, beforeAll} from "bun:test"; -const apiEndpoint = 'http://127.0.0.1/v1/api' +const apiEndpoint = 'http://localhost:8080/v1/api' interface response { success: boolean, @@ -49,7 +49,7 @@ describe('Installing & Seeding', () => { const output = await new Response(proc.stdout).text(); expect(output).toContain('Finished seeding') - }, 60000); + }, 80000); }); describe('All endpoints logged in', () => { diff --git a/e2e/tests/links.spec.ts b/e2e/tests/links.spec.ts index 3dde559..ee55ef6 100644 --- a/e2e/tests/links.spec.ts +++ b/e2e/tests/links.spec.ts @@ -1,6 +1,6 @@ import {expect, test, describe, beforeAll} from "bun:test"; -const endpoint = 'http://127.0.0.1/' +const endpoint = 'http://localhost:8080/' interface response { success: boolean,