blob: 33cce9e040c5f6c203bc38d33e89cdf7a9c9fd59 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {assert} from 'chai';
import {MrMultiCheckbox} from './mr-multi-checkbox.js';
let element;
describe('mr-multi-checkbox', () => {
beforeEach(() => {
element = document.createElement('mr-multi-checkbox');
document.body.appendChild(element);
});
afterEach(() => {
document.body.removeChild(element);
});
it('initializes', () => {
assert.instanceOf(element, MrMultiCheckbox);
});
});