Skip to content

Commit ffa313a

Browse files
authored
test: replace enzyme test code with @testing-library/react. (#471)
* Update test case. Replace enzyme test code with @testing-library/react. Update test cases in `tests/index.spec.tsx` to use `@testing-library/react` instead of `enzyme`. * Replace `enzyme` imports with `@testing-library/react` imports. * Update test cases to use `render`, `fireEvent`, and other utilities from `@testing-library/react`. * Remove `mount` and `ReactWrapper` imports. * Change code `props.style` with `toHaveStyle({ key: value })` style. * Change `style.display` check to be `toHaveStyle("display: block")` or `display: none`. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/react-component/dialog?shareId=XXXX-XXXX-XXXX-XXXX). * test: fix part * test: fix lint * test: fix test case * chore: adjust package.json
1 parent 7b7a302 commit ffa313a

File tree

5 files changed

+220
-238
lines changed

5 files changed

+220
-238
lines changed

jest.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module.exports = {
22
setupFiles: ["./tests/setup.js"],
33
setupFilesAfterEnv: ["./tests/setupFilesAfterEnv.ts"],
4-
snapshotSerializers: [require.resolve("enzyme-to-json/serializer")],
54
};

package.json

+5-9
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@
5858
"devDependencies": {
5959
"@rc-component/father-plugin": "^2.0.1",
6060
"@testing-library/jest-dom": "^6.1.6",
61-
"@testing-library/react": "^12.0.0",
62-
"@types/enzyme": "^3.10.7",
61+
"@testing-library/react": "^13.0.0",
6362
"@types/jest": "^29.4.0",
6463
"@types/keyv": "3.1.4",
6564
"@types/react": "^18.0.24",
@@ -69,9 +68,6 @@
6968
"cheerio": "1.0.0-rc.12",
7069
"cross-env": "^7.0.0",
7170
"dumi": "^2.1.3",
72-
"enzyme": "^3.1.1",
73-
"enzyme-adapter-react-16": "^1.0.1",
74-
"enzyme-to-json": "^3.1.2",
7571
"eslint": "^7.1.0",
7672
"eslint-config-airbnb": "^19.0.4",
7773
"eslint-plugin-react": "^7.20.6",
@@ -86,13 +82,13 @@
8682
"rc-drawer": "^7.0.0",
8783
"rc-select": "^14.11.0",
8884
"rc-test": "^7.0.14",
89-
"react": "^16.9.0",
90-
"react-dom": "^16.9.0",
85+
"react": "^18.0.0",
86+
"react-dom": "^18.0.0",
9187
"react-draggable": "^4.4.3",
9288
"typescript": "^5.4.3"
9389
},
9490
"peerDependencies": {
95-
"react": ">=16.9.0",
96-
"react-dom": ">=16.9.0"
91+
"react": ">=18.0.0",
92+
"react-dom": ">=18.0.0"
9793
}
9894
}

0 commit comments

Comments
 (0)