Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Feb 21, 2025
1 parent 821b221 commit 9a6950f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,5 @@ jobs:
# working-directory: ${{ matrix.suite }}

- name: Test
run: bun test --env-file=../server/.env ${{ matrix.suite }} --timeout 10000 --rerun-each 2
run: bun test --env-file=../app/.env ${{ matrix.suite }} --timeout 10000 --rerun-each 2
working-directory: test
2 changes: 1 addition & 1 deletion test/tests/server.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const TEST_RELEASE = true;
let server: Subprocess | undefined;

beforeAll(async () => {
server = Bun.spawn(['../server/target/release/enstate'], {
server = Bun.spawn(['../app/target/release/enstate'], {
env: { ...process.env, RUST_LOG: 'info' },
});

Expand Down

0 comments on commit 9a6950f

Please sign in to comment.