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