Skip to content

Commit

Permalink
Merge pull request #2 from byawitz/release/alpha
Browse files Browse the repository at this point in the history
[⚡️] - Releasing alpha
  • Loading branch information
byawitz authored Mar 11, 2024
2 parents 743941e + f62847e commit 311abcc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Fully featured Open-source URL Shortener
>
> | 🏗️ Current | 👉 Next |
> |-------------|---------|
> | Pre-alpha | Alpha |
> | Alpha | Beta |
## Architecture

Expand Down
4 changes: 2 additions & 2 deletions e2e/tests/api.spec.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -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', () => {
Expand Down
2 changes: 1 addition & 1 deletion e2e/tests/links.spec.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 311abcc

Please sign in to comment.