@@ -4,12 +4,12 @@ const isWin = os.platform() === "win32";
44const config = {
55 preset : "ts-jest" ,
66 testEnvironmentOptions : {
7- url : "http://localhost/" ,
7+ url : "http://localhost/"
88 } ,
99 testMatch : [
1010 "<rootDir>/tests/*.test.ts" ,
1111 // TODO: enable after migrating to separated repo
12- "<rootDir>/tests/e2e/*.test.js" ,
12+ "<rootDir>/tests/e2e/*.test.js"
1313 ] ,
1414 testPathIgnorePatterns : [
1515 // TODO: check why http proxy server throw error with websocket server
@@ -19,26 +19,26 @@ const config = {
1919 // TODO: check why this test throw error when run with other tests
2020 "<rootDir>/tests/e2e/watch-files.test.js" ,
2121 // TODO: check why this test timeout
22- "<rootDir>/tests/e2e/web-socket-server-url.test.js" ,
22+ "<rootDir>/tests/e2e/web-socket-server-url.test.js"
2323 ] ,
2424 cache : false ,
2525 testTimeout : process . env . CI ? 120000 : 30000 ,
2626 transform : {
2727 "(.*)\\.{js,ts}" : [
2828 "ts-jest" ,
2929 {
30- tsconfig : "<rootDir>/tests/tsconfig.json" ,
31- } ,
32- ] ,
30+ tsconfig : "<rootDir>/tests/tsconfig.json"
31+ }
32+ ]
3333 } ,
3434 // Add this to find out which test timeouts
3535 // testSequencer: "<rootDir>/tests/helpers/sequencer.js",
3636 snapshotResolver : "<rootDir>/tests/helpers/snapshot-resolver.js" ,
3737 setupFilesAfterEnv : [ "<rootDir>/tests/helpers/setup-test.js" ] ,
3838 globalSetup : "<rootDir>/tests/helpers/global-setup-test.js" ,
3939 moduleNameMapper : {
40- "^uuid$" : require . resolve ( "uuid" ) ,
41- } ,
40+ "^uuid$" : require . resolve ( "uuid" )
41+ }
4242} ;
4343
4444module . exports = config ;
0 commit comments