Skip to content

Commit

Permalink
reverted formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-g committed Dec 21, 2023
1 parent d19e809 commit 770623c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions labs/behaviors/constraint-validation_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@

// import 'jasmine'; (google3-only)

import { LitElement, html } from 'lit';
import { customElement, property } from 'lit/decorators.js';
import {LitElement, html} from 'lit';
import {customElement, property} from 'lit/decorators.js';

import {
createValidator,
getValidityAnchor,
mixinConstraintValidation,
} from './constraint-validation.js';
import { mixinElementInternals } from './element-internals.js';
import { getFormValue, mixinFormAssociated } from './form-associated.js';
import { CheckboxValidator } from './validators/checkbox-validator.js';
import { Validator } from './validators/validator.js';
import { SelectState } from './validators/select-validator.js';
import {mixinElementInternals} from './element-internals.js';
import {getFormValue, mixinFormAssociated} from './form-associated.js';
import {CheckboxValidator} from './validators/checkbox-validator.js';
import {Validator} from './validators/validator.js';
import {SelectState} from './validators/select-validator.js';

describe('mixinConstraintValidation()', () => {
const baseClass = mixinConstraintValidation(
Expand All @@ -27,8 +27,8 @@ describe('mixinConstraintValidation()', () => {

@customElement('test-constraint-validation')
class TestConstraintValidation extends baseClass {
@property({ type: Boolean }) checked = false;
@property({ type: Boolean }) required = false;
@property({type: Boolean}) checked = false;
@property({type: Boolean}) required = false;

override render() {
return html`<div id="root"></div>`;
Expand Down

0 comments on commit 770623c

Please sign in to comment.