| import './index'; | |
| import { expect } from 'chai'; | |
| import { PlotGoogleChartSk } from './plot-google-chart-sk'; | |
| // TODO(b/362831653): Add unit tests for plot-google-chart | |
| describe('plot-google-chart-sk', () => { | |
| let element: PlotGoogleChartSk; | |
| describe('some action', () => { | |
| it('some result', () => { | |
| // eslint-disable-next-line @typescript-eslint/no-unused-expressions | |
| expect(element).to.not.be.null; | |
| }); | |
| }); | |
| }); |