Skip to content

Commit 92e5d2a

Browse files
committed
fix: CheckboxGroupField, remove aria-invalid test
1 parent 4b5c809 commit 92e5d2a

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

test-app/tests/integration/components/checkbox-group-field-test.gts

-12
Original file line numberDiff line numberDiff line change
@@ -219,16 +219,4 @@ module('Integration | Component | CheckboxGroupField', function (hooks) {
219219
assert.dom('[data-checkbox-2]').isChecked();
220220
});
221221

222-
test('it sets "aria-invalid" when provided with `@error`', async function (assert) {
223-
await render(<template>
224-
<CheckboxGroupField
225-
@label="Label"
226-
@name="group"
227-
@error="Error message"
228-
data-group-field
229-
/>
230-
</template>);
231-
232-
assert.dom('[data-group-field]').hasAttribute('aria-invalid', 'true');
233-
});
234222
});

0 commit comments

Comments
 (0)