Skip to content

Commit c035de5

Browse files
committed
fix(test): remove a duplicate test
1 parent 89e0441 commit c035de5

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

packages/uui-boolean-input/lib/uui-boolean-input.test.ts

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
/* eslint-disable lit/no-invalid-html */
22
/* eslint-disable lit/binding-positions */
3+
import '.';
4+
35
import {
46
defineCE,
57
elementUpdated,
6-
html,
7-
fixture,
88
expect,
9+
fixture,
10+
html,
911
unsafeStatic,
1012
} from '@open-wc/testing';
11-
import { UUIBooleanInputElement } from './uui-boolean-input.element';
12-
import '.';
1313
import { html as litHTMLLiteral } from 'lit';
1414

15+
import { UUIBooleanInputElement } from './uui-boolean-input.element';
16+
1517
const tagName = defineCE(
1618
class BooleanInputTestElement extends UUIBooleanInputElement {
1719
renderCheckbox() {
@@ -58,10 +60,6 @@ describe('UUIBooleanInputElement', () => {
5860
expect(element.checked).to.be.equal(true);
5961
});
6062

61-
it('contains a native input', async () => {
62-
await expect(input).to.exist;
63-
});
64-
6563
it('if disabled, disables the native input', async () => {
6664
element.disabled = true;
6765
await elementUpdated(element);

0 commit comments

Comments
 (0)