Update karma for new expansion cell markup

Also cleans up spec by:
- Add missing `afterEach ... $destroy`
- Add missing `done` call when `$nextTick` was used
This commit is contained in:
André Luís 2019-08-11 23:46:49 +00:00 committed by Paul Slaughter
parent 22dc7a0ca8
commit ccce365ac5
2 changed files with 13 additions and 5 deletions

View File

@ -213,7 +213,7 @@ export default {
<template>
<td :colspan="colspan">
<div class="content">
<div class="content js-line-expansion-content">
<a
v-if="canExpandUp"
v-tooltip

View File

@ -15,8 +15,12 @@ describe('DiffFile', () => {
}).$mount();
});
afterEach(() => {
vm.$destroy();
});
describe('template', () => {
it('should render component with file header, file content components', () => {
it('should render component with file header, file content components', done => {
const el = vm.$el;
const { file_hash, file_path } = vm.file;
@ -30,9 +34,13 @@ describe('DiffFile', () => {
vm.file.renderIt = true;
vm.$nextTick(() => {
expect(el.querySelectorAll('.line_content').length).toBeGreaterThan(5);
});
vm.$nextTick()
.then(() => {
expect(el.querySelectorAll('.line_content').length).toBeGreaterThanOrEqual(5);
expect(el.querySelectorAll('.js-line-expansion-content').length).toBe(1);
})
.then(done)
.catch(done.fail);
});
describe('collapsed', () => {