Skip to content

Commit

Permalink
chore: fix jest command and add testing library to devDep
Browse files Browse the repository at this point in the history
  • Loading branch information
koremp committed Aug 18, 2024
1 parent 3a82254 commit b321dd3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit b321dd3

Please sign in to comment.