Created
October 21, 2018 14:26
-
-
Save YonatanKra/b1fa70c0f92191eff78b4aaa398d5f3f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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