Fixed up JS tests
This commit is contained in:
parent
274987d5c0
commit
8323bc4919
3 changed files with 3 additions and 18 deletions
|
@ -21,7 +21,7 @@
|
||||||
this.$refs.selectAllBtn.blur();
|
this.$refs.selectAllBtn.blur();
|
||||||
|
|
||||||
ModalStore.toggleAll();
|
ModalStore.toggleAll();
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
'modal-tabs': gl.issueBoards.ModalTabs,
|
'modal-tabs': gl.issueBoards.ModalTabs,
|
||||||
|
|
|
@ -61,18 +61,6 @@ describe('Store', () => {
|
||||||
expect(list).toBeDefined();
|
expect(list).toBeDefined();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('finds list limited by type', () => {
|
|
||||||
gl.issueBoards.BoardsStore.addList({
|
|
||||||
id: 1,
|
|
||||||
position: 0,
|
|
||||||
title: 'Test',
|
|
||||||
list_type: 'backlog'
|
|
||||||
});
|
|
||||||
const list = gl.issueBoards.BoardsStore.findList('id', 1, 'backlog');
|
|
||||||
|
|
||||||
expect(list).toBeDefined();
|
|
||||||
});
|
|
||||||
|
|
||||||
it('gets issue when new list added', (done) => {
|
it('gets issue when new list added', (done) => {
|
||||||
gl.issueBoards.BoardsStore.addList(listObj);
|
gl.issueBoards.BoardsStore.addList(listObj);
|
||||||
const list = gl.issueBoards.BoardsStore.findList('id', 1);
|
const list = gl.issueBoards.BoardsStore.findList('id', 1);
|
||||||
|
@ -117,10 +105,7 @@ describe('Store', () => {
|
||||||
expect(gl.issueBoards.BoardsStore.shouldAddBlankState()).toBe(false);
|
expect(gl.issueBoards.BoardsStore.shouldAddBlankState()).toBe(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('check for blank state adding when backlog & done list exist', () => {
|
it('check for blank state adding when done list exist', () => {
|
||||||
gl.issueBoards.BoardsStore.addList({
|
|
||||||
list_type: 'backlog'
|
|
||||||
});
|
|
||||||
gl.issueBoards.BoardsStore.addList({
|
gl.issueBoards.BoardsStore.addList({
|
||||||
list_type: 'done'
|
list_type: 'done'
|
||||||
});
|
});
|
||||||
|
|
|
@ -93,7 +93,7 @@ describe('Issue card component', () => {
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
expect(
|
expect(
|
||||||
component.$el.querySelector('.fa-eye-flash'),
|
component.$el.querySelector('.confidential-icon'),
|
||||||
).not.toBeNull();
|
).not.toBeNull();
|
||||||
done();
|
done();
|
||||||
}, 0);
|
}, 0);
|
||||||
|
|
Loading…
Reference in a new issue