Skip to content

Commit 23a0eea

Browse files
committed
return test
1 parent ef9c459 commit 23a0eea

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

tests/testClient.test.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -170,13 +170,11 @@ describe("starting location", () => {
170170
const testClient = await TestClient.start("tests/mocks", "startingLocation.qsps", StartingLocation.mkDefault())
171171
await TestClient.mainEqual(testClient, "this is c location\r\n")
172172
})
173-
if (platform() === "win32") { // fix: "Test timed out in 5000ms" in none starting location on Linux
174-
it("none", async () => {
175-
const testClient = await TestClient.start("tests/mocks", "startingLocation.qsps", StartingLocation.mkNone())
176-
testClient.server.api.execCode("'none'")
177-
await TestClient.mainEqual(testClient, "none\r\n")
178-
})
179-
}
173+
it("none", async () => {
174+
const testClient = await TestClient.start("tests/mocks", "startingLocation.qsps", StartingLocation.mkNone())
175+
testClient.server.api.execCode("'none'")
176+
await TestClient.mainEqual(testClient, "none\r\n")
177+
})
180178
it("custom a location", async () => {
181179
const testClient = await TestClient.start("tests/mocks", "startingLocation.qsps", StartingLocation.mkCustom("a"))
182180
await TestClient.mainEqual(testClient, "this is a location\r\n")

0 commit comments

Comments
 (0)