Skip to content

Commit

Permalink
[⚡️] - Tests, and release.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Binyamin Yawitz <[email protected]>
  • Loading branch information
byawitz committed Mar 11, 2024
1 parent 10701e7 commit d32b082
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
id: meta
uses: docker/metadata-action@v4
with:
images: linkos/lib
images: byawitz/linkos
tags: |
type=semver,pattern={{major}}.{{minor}}.{{patch}}
type=semver,pattern={{major}}.{{minor}}
Expand Down
3 changes: 1 addition & 2 deletions e2e/tests/api.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ describe('Installing & Seeding', () => {

const output = await new Response(proc.stdout).text();
expect(output).toContain('Owner token created')
console.log(output);
});

test('Seeding', async () => {
Expand All @@ -46,10 +45,10 @@ describe('Installing & Seeding', () => {

proc.stdin!.write(`bun /usr/server/app/src/index.ts -dbs\n`);
proc.stdin!.flush();
proc.stdin!.end();

const output = await new Response(proc.stdout).text();
expect(output).toContain('Finished seeding')
console.log(output);
}, 60000);
});

Expand Down

0 comments on commit d32b082

Please sign in to comment.