2016-11-10 13:58:35 -05:00
|
|
|
//= require vue
|
|
|
|
//= require environments/components/environment_external_url
|
|
|
|
|
|
|
|
describe('External URL Component', () => {
|
|
|
|
fixture.preload('environments/element.html');
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture.load('environments/element.html');
|
|
|
|
});
|
|
|
|
|
2016-12-08 07:06:49 -05:00
|
|
|
it('should link to the provided externalUrl prop', () => {
|
2016-11-10 13:58:35 -05:00
|
|
|
const externalURL = 'https://gitlab.com';
|
|
|
|
const component = new window.gl.environmentsList.ExternalUrlComponent({
|
|
|
|
el: document.querySelector('.test-dom-element'),
|
|
|
|
propsData: {
|
2016-12-08 06:54:08 -05:00
|
|
|
externalUrl: externalURL,
|
2016-11-10 13:58:35 -05:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(component.$el.getAttribute('href')).toEqual(externalURL);
|
|
|
|
expect(component.$el.querySelector('fa-external-link')).toBeDefined();
|
|
|
|
});
|
|
|
|
});
|