File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed
Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff 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" )
You can’t perform that action at this time.
0 commit comments