Skip to content

Commit ec4116c

Browse files
committed
removed debug from test
1 parent 6fde6cb commit ec4116c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"scripts": {
2020
"start:client": "react-scripts start",
2121
"build": "react-scripts build",
22-
"test": "react-scripts test",
22+
"test": "react-scripts test --watchAll",
2323
"cypress": "cypress open",
2424
"cypress:e2e": "cypress run --record --spec 'cypress/integration/dashboard/end-to-end.spec.js'",
2525
"eject": "react-scripts eject",
@@ -57,5 +57,8 @@
5757
"node-env-run": "^3.0.2",
5858
"nodemon": "^2.0.4",
5959
"npm-run-all": "^4.1.5"
60+
},
61+
"wallaby": {
62+
"autoDetect": true
6063
}
6164
}

src/components/NumberInput/__tests__/NumberInput.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe('<NumberInput />', () => {
3535

3636
expect(console.error).not.toHaveBeenCalled();
3737

38-
debug();
38+
// debug();
3939

4040
expect(ref.current).not.toBeNull();
4141
expect(ref.current.getAttribute('type')).toEqual('number');

0 commit comments

Comments
 (0)