2017-10-11 10:57:13 +00:00
|
|
|
describe('Component vnDropDown', () => {
|
|
|
|
let $element;
|
2018-11-06 13:27:16 +00:00
|
|
|
let controller;
|
2017-10-11 10:57:13 +00:00
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
beforeEach(ngModule('vnCore'));
|
2018-03-09 13:15:30 +00:00
|
|
|
|
2018-10-18 18:48:21 +00:00
|
|
|
beforeEach(inject(($compile, $rootScope, $document) => {
|
|
|
|
$element = $compile(`<vn-drop-down></vn-drop-down>`)($rootScope);
|
|
|
|
$document.find('body').append($element);
|
2018-11-06 13:27:16 +00:00
|
|
|
controller = $element.controller('vnDropDown');
|
2017-10-11 10:57:13 +00:00
|
|
|
}));
|
|
|
|
|
2018-10-18 18:48:21 +00:00
|
|
|
afterEach(() => {
|
|
|
|
$element.remove();
|
|
|
|
});
|
|
|
|
|
2018-03-09 13:15:30 +00:00
|
|
|
describe('show() method', () => {
|
2018-10-18 18:48:21 +00:00
|
|
|
it(`should enable the show property`, () => {
|
2018-11-06 13:27:16 +00:00
|
|
|
controller.show();
|
2017-10-11 10:57:13 +00:00
|
|
|
|
2018-11-06 13:27:16 +00:00
|
|
|
expect(controller.shown).toEqual(true);
|
2017-10-11 10:57:13 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-03-09 13:15:30 +00:00
|
|
|
describe('hide() method', () => {
|
2018-10-18 18:48:21 +00:00
|
|
|
it(`should disable the show property`, () => {
|
2018-11-06 13:27:16 +00:00
|
|
|
controller.hide();
|
2017-10-13 08:23:28 +00:00
|
|
|
|
2018-11-06 13:27:16 +00:00
|
|
|
expect(controller.shown).toEqual(false);
|
2017-10-13 08:23:28 +00:00
|
|
|
});
|
|
|
|
});
|
2017-10-11 10:57:13 +00:00
|
|
|
});
|