blob: a813d64e3b422bd2a0160e5fdc7790fda3961f52 [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 {MrDayIcon} from './mr-day-icon.js';
let element;
describe('mr-day-icon', () => {
beforeEach(() => {
element = document.createElement('mr-day-icon');
document.body.appendChild(element);
});
afterEach(() => {
document.body.removeChild(element);
});
it('initializes', () => {
assert.instanceOf(element, MrDayIcon);
});
});