6
6
7
7
// import 'jasmine'; (google3-only)
8
8
9
- import { LitElement , html } from 'lit' ;
10
- import { customElement , property } from 'lit/decorators.js' ;
9
+ import { LitElement , html } from 'lit' ;
10
+ import { customElement , property } from 'lit/decorators.js' ;
11
11
12
12
import {
13
13
createValidator ,
14
14
getValidityAnchor ,
15
15
mixinConstraintValidation ,
16
16
} from './constraint-validation.js' ;
17
- import { mixinElementInternals } from './element-internals.js' ;
18
- import { getFormValue , mixinFormAssociated } from './form-associated.js' ;
19
- import { CheckboxValidator } from './validators/checkbox-validator.js' ;
20
- import { Validator } from './validators/validator.js' ;
21
- import { SelectState } from './validators/select-validator.js' ;
17
+ import { mixinElementInternals } from './element-internals.js' ;
18
+ import { getFormValue , mixinFormAssociated } from './form-associated.js' ;
19
+ import { CheckboxValidator } from './validators/checkbox-validator.js' ;
20
+ import { Validator } from './validators/validator.js' ;
21
+ import { SelectState } from './validators/select-validator.js' ;
22
22
23
23
describe ( 'mixinConstraintValidation()' , ( ) => {
24
24
const baseClass = mixinConstraintValidation (
@@ -27,8 +27,8 @@ describe('mixinConstraintValidation()', () => {
27
27
28
28
@customElement ( 'test-constraint-validation' )
29
29
class TestConstraintValidation extends baseClass {
30
- @property ( { type : Boolean } ) checked = false ;
31
- @property ( { type : Boolean } ) required = false ;
30
+ @property ( { type : Boolean } ) checked = false ;
31
+ @property ( { type : Boolean } ) required = false ;
32
32
33
33
override render ( ) {
34
34
return html `< div id ="root "> </ div > ` ;
0 commit comments