remove .only

This commit is contained in:
MapleLeaf
2021-12-22 14:05:42 -06:00
parent 3113593f4f
commit f14306fe26

View File

@@ -250,7 +250,7 @@ test("button onClick", async () => {
await waitForWithTimeout(() => clicked, 1000)
})
test.only("button click with state", async () => {
test("button click with state", async () => {
function Counter() {
const [count, setCount] = useState(0)
return <Button onClick={() => setCount(count + 1)}>{count}</Button>