Skip to content

Commit daf92b3

Browse files
committed
Testing how codecov behaves with failed Jest coverage
This reverts commit 29f9277.
1 parent 5d95138 commit daf92b3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/__tests__/ariaAttributes.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,6 @@ test('`value.now` throws on unsupported roles', () => {
249249
test('`value.now: number` matches `aria-valuenow` on widgets', () => {
250250
const {getByRole} = renderIntoDocument(
251251
`<div>
252-
<button role="spinbutton" />
253252
<button role="spinbutton" aria-valuenow="5" />
254253
<button role="spinbutton" aria-valuenow="10" />
255254
</div>`,
@@ -270,7 +269,6 @@ test('`value.max` throws on unsupported roles', () => {
270269
test('`value.max: number` matches `aria-valuemax` on widgets', () => {
271270
const {getByRole} = renderIntoDocument(
272271
`<div>
273-
<button role="spinbutton" />
274272
<button role="spinbutton" aria-valuemax="5" />
275273
<button role="spinbutton" aria-valuemax="10" />
276274
</div>`,
@@ -291,7 +289,6 @@ test('`value.min` throws on unsupported roles', () => {
291289
test('`value.min: number` matches `aria-valuemin` on widgets', () => {
292290
const {getByRole} = renderIntoDocument(
293291
`<div>
294-
<button role="spinbutton" />
295292
<button role="spinbutton" aria-valuemin="5" />
296293
<button role="spinbutton" aria-valuemin="10" />
297294
</div>`,
@@ -312,7 +309,6 @@ test('`value.text` throws on unsupported roles', () => {
312309
test('`value.text: Matcher` matches `aria-valuetext` on widgets', () => {
313310
const {getAllByRole, getByRole} = renderIntoDocument(
314311
`<div>
315-
<button role="spinbutton" />
316312
<button role="spinbutton" aria-valuetext="zero" />
317313
<button role="spinbutton" aria-valuetext="few" />
318314
<button role="spinbutton" aria-valuetext="many" />

0 commit comments

Comments
 (0)