Skip to content

Commit 5e8f0bc

Browse files
committed
test: remove start from test as not stable
1 parent 9975eaa commit 5e8f0bc

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

e2e/game.test.ts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const PROJECT_DIR = join(dirname(fileURLToPath(import.meta.url)), "./game");
99
describe("E2E Game", () => {
1010
beforeAll(() => {
1111
rmSync(join(PROJECT_DIR, ".nanoforge"), { recursive: true, force: true });
12-
execSync("nf build", {
12+
execSync("pnpm run build", {
1313
cwd: PROJECT_DIR,
1414
stdio: "pipe",
1515
timeout: 120_000,
@@ -33,14 +33,4 @@ describe("E2E Game", () => {
3333
expect(existsSync(join(PROJECT_DIR, ".nanoforge/server/libecs.wasm"))).toBe(true);
3434
});
3535
});
36-
37-
describe("Server", () => {
38-
it("should start, run for 5 ticks, and exit cleanly", () => {
39-
execSync("bun run ../run-server.mjs", {
40-
cwd: PROJECT_DIR,
41-
stdio: "pipe",
42-
timeout: 15_000,
43-
});
44-
}, 20_000);
45-
});
4636
});

0 commit comments

Comments
 (0)