blob: 98c5b5dc84af77a727da2f34c8ed4f03847edcc3 [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 {MrMoveCopyIssue} from './mr-move-copy-issue.js';
let element;
describe('mr-move-copy-issue', () => {
beforeEach(() => {
element = document.createElement('mr-move-copy-issue');
document.body.appendChild(element);
});
afterEach(() => {
document.body.removeChild(element);
});
it('initializes', () => {
assert.instanceOf(element, MrMoveCopyIssue);
});
});