Skip to content
Snippets Groups Projects
Commit 879b12cf authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Fix broken test

Former-commit-id: 6e5a1ea0
parent 36c88888
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -13,16 +13,11 @@
},
},
 
methods: {
openConfirmDialog() {
return window.confirm('Are you sure you want to stop this environment?'); // eslint-disable-line
},
},
template: `
<a v-on:click="openConfirmDialog"
<a
class="btn stop-env-link"
:href="stop_url"
data-confirm="Are you sure you want to stop this environment?"
data-method="post"
rel="nofollow">
<i class="fa fa-stop stop-env-icon"></i>
Loading
Loading
Loading
Loading
@@ -16,4 +16,24 @@ describe('Stop Component', () => {
});
expect(component.$el.getAttribute('href')).toEqual(stopURL);
});
describe('When clicked', () => {
it('Should open popup with confirmation warning', () => {
const component = new window.gl.environmentsList.StopComponent({
el: document.querySelector('.test-dom-element'),
propsData: {
stop_url: '#',
},
});
let opened = false;
spyOn(window, 'confirm').and.callFake(function () {
opened = true;
expect(opened).toEqual(true);
return false;
});
component.$el.click();
});
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment