We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6b2bdc commit c21e04fCopy full SHA for c21e04f
2 files changed
package.json
@@ -13,8 +13,8 @@
13
"preview": "vite preview",
14
"prepare": "husky",
15
"commit": "cz",
16
- "e2e": "playwright src/test",
17
- "e2e:ui": "playwright src/test --ui",
+ "e2e": "playwright test",
+ "e2e:ui": "playwright test --ui",
18
"test": "jest",
19
"test:watch": "jest --watch",
20
"test:coverage": "jest --coverage"
src/components/Modal/Modal.test.tsx
@@ -2,7 +2,7 @@ import { render } from 'src/test/test-utils';
2
import '@testing-library/jest-dom';
3
import Modal from './Modal';
4
5
-describe('InfoModal', () => {
+describe('Modal', () => {
6
it('renders children when open', () => {
7
const { getByText } = render(
8
<Modal isOpened={true} onClose={() => {}}>
0 commit comments