blob: 7071b77fd529816c851a88dfd5c51d3bc0354c2f [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 {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);
});
});