diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..914223976 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# editorconfig.org +root = true + +[*] +indent_size = 2 +indent_style = space +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false diff --git a/__mocks__/styleMock.js b/__mocks__/styleMock.js new file mode 100644 index 000000000..f053ebf79 --- /dev/null +++ b/__mocks__/styleMock.js @@ -0,0 +1 @@ +module.exports = {}; diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 000000000..e662466b0 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,11 @@ +module.exports = { + verbose: true, + preset: 'ts-jest', + moduleNameMapper: { + '\\.css$': '/__mocks__/styleMock.js', + }, + coveragePathIgnorePatterns: ['/node_modules/', '/coverage/', '/types/'], + testMatch: ['**/*.test.{ts,tsx}'], + collectCoverageFrom: ['**/*.{ts,tsx}', '!**/*.stories.tsx'], + setupFilesAfterEnv: ['./jest.setup.ts'], +}; diff --git a/jest.setup.ts b/jest.setup.ts new file mode 100644 index 000000000..7b0828bfa --- /dev/null +++ b/jest.setup.ts @@ -0,0 +1 @@ +import '@testing-library/jest-dom'; diff --git a/package.json b/package.json index bdb684635..6fa698722 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,10 @@ "pre-commit": "yarn run lint-staged", "build-old": "rollup -c", "build": "rm -rf dist && node builder/build.js --config=./build.config.js", - "pre-build": "node builder/preBuild.js --config=./build.config.js" + "pre-build": "node builder/preBuild.js --config=./build.config.js", + "test": "jest", + "test:watch": "jest --watch", + "coverage": "jest --all --coverage" }, "browserslist": [ "last 2 version", @@ -91,9 +94,10 @@ "@svgr/plugin-jsx": "^5.3.1", "@svgr/plugin-prettier": "^5.3.1", "@svgr/plugin-svgo": "^5.3.0", + "@testing-library/jest-dom": "^5.5.0", + "@testing-library/react": "^10.0.3", "@types/classnames": "^2.2.9", - "@types/enzyme": "^3.10.3", - "@types/jest": "^24.0.15", + "@types/jest": "^25.2.1", "@types/lodash-es": "^4.17.3", "@types/node": "^12.0.8", "@types/react": "^16.8.20", @@ -109,7 +113,7 @@ "eslint-plugin-prettier": "^3.1.0", "fast-glob": "^3.2.2", "fs-extra": "^9.0.0", - "jest-enzyme": "^7.0.2", + "jest": "^25.4.0", "lint-staged": "^8.2.1", "log-symbols": "^3.0.0", "postcss": "^7.0.27", @@ -129,20 +133,9 @@ "stylelint-config-standard": "^18.3.0", "stylelint-prettier": "^1.1.1", "ts-essentials": "^3.0.0", + "ts-jest": "^25.4.0", "ts-node": "^8.8.2", "typescript": "^3.8.3" }, - "homepage": "https://gpn-prototypes.github.io/ui-kit", - "jest": { - "setupFilesAfterEnv": [ - "/src/config/setupTests.js" - ], - "moduleFileExtensions": [ - "js", - "jsx", - "json", - "ts", - "tsx" - ] - } + "homepage": "https://gpn-prototypes.github.io/ui-kit" } diff --git a/src/components/Button/Button.test.tsx b/src/components/Button/Button.test.tsx new file mode 100644 index 000000000..fc8e14f45 --- /dev/null +++ b/src/components/Button/Button.test.tsx @@ -0,0 +1,209 @@ +import * as React from 'react'; +import { render, screen, fireEvent } from '@testing-library/react'; + +import { Button, ButtonProps } from './Button'; + +const testId = 'button'; + +const renderComponent = (props: ButtonProps = {}) => { + const { label = 'Текст кнопки', ...rest } = props; + return render(