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