blob: 6cfc9a97826d2a7ff0d49a4632e0b07a2e51bcf7 [file] [log] [blame]
import './index';
import { ExampleControlSk } from './example-control-sk';
import { setUpElementUnderTest } from '../../../infra-sk/modules/test_util';
import { expect } from 'chai';
describe('example-control-sk', () => {
const newInstance = setUpElementUnderTest<ExampleControlSk>('example-control-sk');
let element: ExampleControlSk;
beforeEach(() => {
element = newInstance((el: ExampleControlSk) => {
// Place here any code that must run after the element is instantiated but
// before it is attached to the DOM (e.g. property setter calls,
// document-level event listeners, etc.).
});
});
describe('some action', () => {
it('some result', () => {
expect(element).to.not.be.null;
});
});
});