Skip to content
Snippets Groups Projects
Commit e289b8cc authored by Mike Greiling's avatar Mike Greiling
Browse files

fix test failures in board_new_issue_spec.js on Chrome 60

parent 5a332c59
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -30,6 +30,8 @@ describe('Issue boards new issue form', () => {
};
 
beforeEach((done) => {
setFixtures('<div class="test-container"></div>');
const BoardNewIssueComp = Vue.extend(boardNewIssue);
 
Vue.http.interceptors.push(boardsMockInterceptor);
Loading
Loading
@@ -46,15 +48,17 @@ describe('Issue boards new issue form', () => {
propsData: {
list,
},
}).$mount();
}).$mount(document.querySelector('.test-container'));
 
Vue.nextTick()
.then(done)
.catch(done.fail);
});
 
afterEach(() => vm.$destroy());
it('calls submit if submit button is clicked', (done) => {
spyOn(vm, 'submit');
spyOn(vm, 'submit').and.callFake(e => e.preventDefault());
vm.title = 'Testing Title';
 
Vue.nextTick()
Loading
Loading
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