We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 821b221 commit 9a6950fCopy full SHA for 9a6950f
.github/workflows/test.yml
@@ -81,5 +81,5 @@ jobs:
81
# working-directory: ${{ matrix.suite }}
82
83
- name: Test
84
- 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
85
working-directory: test
test/tests/server.spec.ts
@@ -15,7 +15,7 @@ const TEST_RELEASE = true;
15
let server: Subprocess | undefined;
16
17
beforeAll(async () => {
18
- server = Bun.spawn(['../server/target/release/enstate'], {
+ server = Bun.spawn(['../app/target/release/enstate'], {
19
env: { ...process.env, RUST_LOG: 'info' },
20
});
21
0 commit comments