Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-08-30 12:32:19 +0300
committerPhil Hughes <me@iamphill.com>2016-08-30 12:32:19 +0300
commit19c9ee4752717fb25529ef8b4dba7bc29616a076 (patch)
tree3aac2607e2cfe466b0ecff5b89521ab6fd55b7e8 /spec/javascripts
parent2778dec131c2afac9fcdb2c42365b69099a5ae5b (diff)
Added search for all lists on issue boards
Closes #21139
Diffstat (limited to 'spec/javascripts')
-rw-r--r--spec/javascripts/boards/list_spec.js.es69
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/javascripts/boards/list_spec.js.es6 b/spec/javascripts/boards/list_spec.js.es6
index c206b794442..1688b996162 100644
--- a/spec/javascripts/boards/list_spec.js.es6
+++ b/spec/javascripts/boards/list_spec.js.es6
@@ -60,15 +60,6 @@ describe('List model', () => {
}, 0);
});
- it('can\'t search when not backlog', () => {
- expect(list.canSearch()).toBe(false);
- });
-
- it('can search when backlog', () => {
- list.type = 'backlog';
- expect(list.canSearch()).toBe(true);
- });
-
it('gets issue from list', (done) => {
setTimeout(() => {
const issue = list.findIssue(1);