diff --git a/babel.config.js b/babel.config.js index fad0e0da59..1c60283421 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,3 +1,3 @@ module.exports = { presets: ["@babel/preset-env"], -}; \ No newline at end of file +} diff --git a/jest.config.js b/jest.config.js index 1bebe8ce9a..fb132f21de 100644 --- a/jest.config.js +++ b/jest.config.js @@ -6,7 +6,7 @@ module.exports = { "^.+\\.(js|jsx)$": "babel-jest", }, transformIgnorePatterns: [ - "//node_modules/(?!(ws|allotment|@tauri-apps/api|wasm-lib)/)", + "//node_modules/(?!(allotment|@tauri-apps/api)/)", ], moduleNameMapper: { '^allotment$': 'allotment/dist/legacy', diff --git a/package.json b/package.json index 337b095031..bea3acad9d 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "build:both": "vite build", "build:both:local": "yarn build:wasm && vite build", "test": "jest", - "test:nowatch": "jest --watchAll=false --coverage=true --forceExit", + "test:nowatch": "jest --watchAll=false --forceExit", "test:rust": "(cd src/wasm-lib && cargo test && cargo clippy)", "test:cov": "jest --watchAll=false --coverage=true --forceExit", "simpleserver:ci": "http-server ./public --cors -p 3000 &",