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:
Diffstat (limited to 'spec/frontend/work_items/router_spec.js')
-rw-r--r--spec/frontend/work_items/router_spec.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/frontend/work_items/router_spec.js b/spec/frontend/work_items/router_spec.js
index 6017c9d9dbb..c583b5a5d4f 100644
--- a/spec/frontend/work_items/router_spec.js
+++ b/spec/frontend/work_items/router_spec.js
@@ -15,6 +15,16 @@ describe('Work items router', () => {
wrapper = mount(App, {
router,
+ provide: {
+ fullPath: 'full-path',
+ },
+ mocks: {
+ $apollo: {
+ queries: {
+ workItemTypes: {},
+ },
+ },
+ },
});
};