Skip to content

Instantly share code, notes, and snippets.

@YonatanKra
Created October 21, 2018 14:26
Show Gist options
  • Save YonatanKra/b1fa70c0f92191eff78b4aaa398d5f3f to your computer and use it in GitHub Desktop.
Save YonatanKra/b1fa70c0f92191eff78b4aaa398d5f3f to your computer and use it in GitHub Desktop.
import './main';
import { CEModalWindow } from "./components/ce-modal-window/ce-modal-window";
describe('ui-elements integration tests', () => {
describe('ce-modal-window', () => {
it(`should be defined`, () => {
const ceModalWindowClass = window.customElements.get('ce-modal-window');
expect(ceModalWindowClass).toBe(CEModalWindow);
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment