diff --git a/package.json b/package.json index 6a7c211..e6688fd 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,9 @@ "main": "index.js", "scripts": { "start": "webpack-dev-server --devtool eval-source-map --mode=development --history-api-fallback --open", - "test:unit": "jest", - "coverage": "npm run test:unit -- --coverage", - "test:e2e": "codeceptjs run --steps", - "test": "npm run test:unit", + "test:unit": "jest:unit", + "test:watch": "jest --watchAll", + "coverage": "jest --coverage", "lint": "ESLINT_USE_FLAT_CONFIG=false eslint ./src -c ./.eslintrc.js --ext .js, .jsx", "lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint ./src -c ./.eslintrc.js --fix --ext .js,.jsx", "build:dev": "webpack --mode=development --config webpack.config.js", @@ -27,12 +26,12 @@ "@eslint/eslintrc": "^3.1.0", "@eslint/js": "^9.8.0", "@reduxjs/toolkit": "^2.2.7", + "@testing-library/dom": "^10.4.0", "@testing-library/jest-dom": "^6.4.8", "@testing-library/react": "^16.0.0", "@types/jest": "^29.5.12", "babel-jest": "^29.7.0", "babel-loader": "^9.1.3", - "codeceptjs": "^3.6.5", "eslint": "^9.8.0", "eslint-config-airbnb": "^19.0.4", "eslint-plugin-import": "^2.20.2", @@ -45,6 +44,7 @@ "html-webpack-plugin": "^5.6.0", "jest": "^29.7.0", "jest-plugin-context": "^2.9.0", + "jsdom": "^24.1.1", "puppeteer": "^23.0.2", "redux-mock-store": "^1.5.4", "start-server-and-test": "^2.0.5",