We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3374b9a commit 53c8b4aCopy full SHA for 53c8b4a
package.json
@@ -12,7 +12,8 @@
12
"test:watch": "jest --watch",
13
"test:update-snapshot": "jest --updateSnapshot",
14
"prepare": "husky install",
15
- "lint:css": "stylelint ./src/**/*.ts"
+ "lint:css": "stylelint ./src/**/*.ts",
16
+ "lint": "eslint ."
17
},
18
"keywords": [],
19
"author": "",
src/tests/components/App.test.tsx
@@ -1,6 +1,6 @@
1
import React from "react";
2
-import { render } from "@testing-library/react";
3
import { App } from "@/components/App";
+import { render } from "@testing-library/react";
4
5
test("should render App correctly", () => {
6
const { container } = render(<App />);
0 commit comments