Skip to content

Commit 9a6950f

Browse files
committed
Update CI
1 parent 821b221 commit 9a6950f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ jobs:
8181
# working-directory: ${{ matrix.suite }}
8282

8383
- name: Test
84-
run: bun test --env-file=../server/.env ${{ matrix.suite }} --timeout 10000 --rerun-each 2
84+
run: bun test --env-file=../app/.env ${{ matrix.suite }} --timeout 10000 --rerun-each 2
8585
working-directory: test

test/tests/server.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const TEST_RELEASE = true;
1515
let server: Subprocess | undefined;
1616

1717
beforeAll(async () => {
18-
server = Bun.spawn(['../server/target/release/enstate'], {
18+
server = Bun.spawn(['../app/target/release/enstate'], {
1919
env: { ...process.env, RUST_LOG: 'info' },
2020
});
2121

0 commit comments

Comments
 (0)