BigW Consortium Gitlab

Commit 9b09ff09 by Regis

add more assertions

parent a39a5caf
...@@ -13,7 +13,7 @@ const issueShowInterceptor = (request, next) => { ...@@ -13,7 +13,7 @@ const issueShowInterceptor = (request, next) => {
})); }));
}; };
describe('Issue Title', () => { fdescribe('Issue Title', () => {
const comps = { const comps = {
IssueTitleComponent: {}, IssueTitleComponent: {},
}; };
...@@ -39,8 +39,14 @@ describe('Issue Title', () => { ...@@ -39,8 +39,14 @@ describe('Issue Title', () => {
// need setTimeout because actual setTimeout in code :P // need setTimeout because actual setTimeout in code :P
setTimeout(() => { setTimeout(() => {
expect(issueShowComponent.$el.querySelector('.title').innerHTML) expect(document.querySelector('title').innerText)
.toContain('this is a title'); .toContain('this is a title');
expect(issueShowComponent.$el.querySelector('.title').innerHTML)
.toContain('<p>this is a title</p>');
expect(issueShowComponent.$el.querySelector('.wiki').innerHTML)
.toContain('<p>this is a description!</p>');
expect(issueShowComponent.$el.querySelector('.js-task-list-field').innerText)
.toContain('this is a description');
done(); done();
}, 10); }, 10);
// 10ms is just long enough for the update hook to fire // 10ms is just long enough for the update hook to fire
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment