blob: 5e95f449b2730f3af58004e2258bc795d8cf15a8 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// 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);
});
});