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 0b1515a commit 10e44bdCopy full SHA for 10e44bd
src/components/counter/Counter.tsx
@@ -26,6 +26,7 @@ const Counter: React.FC = () => {
26
<button
27
className="waves-effect waves-teal btn-flat blue"
28
type="button"
29
+ data-qa="decrement-counter"
30
onClick={() =>
31
dispatch({ type: actionTypes.DECREMENT_COUNTER })
32
}
@@ -35,6 +36,7 @@ const Counter: React.FC = () => {
35
36
37
className="waves-effect waves-teal btn-flat red"
38
39
+ data-qa="increment-counter"
40
41
dispatch({ type: actionTypes.INCREMENT_COUNTER })
42
0 commit comments