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