Skip to content
Snippets Groups Projects
Commit 3f6477fd authored by Clement Ho's avatar Clement Ho
Browse files

Fix karma

parent 9c4ee8ee
No related branches found
No related tags found
No related merge requests found
/* global List */
/* global ListUser */
/* global ListAssignee */
/* global ListLabel */
/* global listObj */
/* global boardsMockInterceptor */
Loading
Loading
@@ -133,12 +133,12 @@ describe('Issue card', () => {
});
 
it('does not set detail issue if img is clicked', (done) => {
vm.issue.assignee = new ListUser({
vm.issue.assignees = [new ListAssignee({
id: 1,
name: 'testing 123',
username: 'test',
avatar: 'test_image',
});
})];
 
Vue.nextTick(() => {
triggerEvent('mouseup', vm.$el.querySelector('img'));
Loading
Loading
Loading
Loading
@@ -35,6 +35,7 @@ describe('Board list component', () => {
iid: 1,
confidential: false,
labels: [],
assignees: [],
});
list.issuesSize = 1;
list.issues.push(issue);
Loading
Loading
Loading
Loading
@@ -120,7 +120,8 @@ describe('List model', () => {
title: 'Testing',
iid: _.random(10000) + i,
confidential: false,
labels: [list.label]
labels: [list.label],
assignees: [],
}));
}
list.issuesSize = 50;
Loading
Loading
@@ -138,7 +139,8 @@ describe('List model', () => {
title: 'Testing',
iid: _.random(10000),
confidential: false,
labels: [list.label]
labels: [list.label],
assignees: [],
}));
list.issuesSize = 2;
 
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