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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-03-10 12:09:29 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-10 12:09:29 +0300
commit921173681c207356914a35ea3dca1afffeac8b05 (patch)
tree45f0b49531b549dd7e28dd22744f822a214390a4 /spec/frontend/boards/board_list_spec.js
parente0df70a614e6381d1ccb9547f23c797063ba6dfc (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/boards/board_list_spec.js')
-rw-r--r--spec/frontend/boards/board_list_spec.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/frontend/boards/board_list_spec.js b/spec/frontend/boards/board_list_spec.js
index d8fc69206f6..005df76b4f1 100644
--- a/spec/frontend/boards/board_list_spec.js
+++ b/spec/frontend/boards/board_list_spec.js
@@ -19,7 +19,11 @@ const createStore = (state = defaultState) => {
return new Vuex.Store({
state,
actions,
- getters: { isEpicBoard: () => false },
+ getters: {
+ isGroupBoard: () => false,
+ isProjectBoard: () => true,
+ isEpicBoard: () => false,
+ },
});
};