Skip to content

Commit 2fb1edf

Browse files
committed
chore: remove tests
1 parent 447ada2 commit 2fb1edf

File tree

6 files changed

+8
-384
lines changed

6 files changed

+8
-384
lines changed

.eslintrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
"prettier"
1717
],
1818
"env": {
19-
"browser": true,
20-
"jest": true
19+
"browser": true
2120
},
2221
"rules": {
2322
"react/jsx-sort-props": "error",

package.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@
3232
"release-it": {
3333
"hooks": {
3434
"before:init": [
35-
"npm run build",
36-
"npm test"
35+
"npm run build"
3736
],
3837
"after:release": "npm run storybook:deploy"
3938
},
@@ -50,8 +49,6 @@
5049
"dev": "npm run storybook",
5150
"dev:watch": "rollup -cw",
5251
"build": "rollup -c",
53-
"test": "vitest --run",
54-
"test:watch": "vitest",
5552
"release": "dotenv release-it",
5653
"lint": "eslint src --ext .js,.ts,.tsx",
5754
"format": "prettier --write src",
@@ -76,9 +73,6 @@
7673
"@storybook/manager-webpack5": "^6.5.12",
7774
"@storybook/react": "^6.5.12",
7875
"@storybook/storybook-deployer": "^2.8.12",
79-
"@storybook/testing-library": "^0.0.13",
80-
"@testing-library/react": "^13.4.0",
81-
"@testing-library/user-event": "^14.4.3",
8276
"@types/node": "^18.7.18",
8377
"@types/react": "^18.0.20",
8478
"@types/react-dom": "^18.0.6",
@@ -109,8 +103,7 @@
109103
"rollup-plugin-postcss": "^4.0.2",
110104
"rollup-plugin-typescript2": "^0.34.0",
111105
"styled-components": "^5.3.5",
112-
"typescript": "^4.8.3",
113-
"vitest": "^0.23.4"
106+
"typescript": "^4.8.3"
114107
},
115108
"author": "Ugo Onali",
116109
"license": "MIT"

src/index.test.tsx

Lines changed: 0 additions & 7 deletions
This file was deleted.

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"esModuleInterop": true,
66
"jsx": "react",
77
"lib": ["ES5", "ES2015", "ES2016", "DOM", "ESNext"],
8-
"types": ["vitest/globals", "node"],
8+
"types": ["node"],
99
"module": "es2015",
1010
"moduleResolution": "node",
1111
"noImplicitAny": false,

vite.config.ts

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)