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-02-02 15:10:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-02-02 15:10:15 +0300
commitbdf5d637dab13620c56063c628274746182196ad (patch)
treeac85f7fd0a998f0edd373adebf5a71f8714e9c2b /spec/frontend/vue_mr_widget
parent0c178b535cda98a248e136ba5128f0d903edb17d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/vue_mr_widget')
-rw-r--r--spec/frontend/vue_mr_widget/mr_widget_options_spec.js11
1 files changed, 4 insertions, 7 deletions
diff --git a/spec/frontend/vue_mr_widget/mr_widget_options_spec.js b/spec/frontend/vue_mr_widget/mr_widget_options_spec.js
index 8c642799fb8..872dcd2af7f 100644
--- a/spec/frontend/vue_mr_widget/mr_widget_options_spec.js
+++ b/spec/frontend/vue_mr_widget/mr_widget_options_spec.js
@@ -825,14 +825,11 @@ describe('MrWidgetOptions', () => {
describe('security widget', () => {
describe.each`
- context | hasPipeline | isFlagEnabled | shouldRender
- ${'has pipeline and flag enabled'} | ${true} | ${true} | ${true}
- ${'has pipeline and flag disabled'} | ${true} | ${false} | ${false}
- ${'no pipeline and flag enabled'} | ${false} | ${true} | ${false}
- `('given $context', ({ hasPipeline, isFlagEnabled, shouldRender }) => {
+ context | hasPipeline | shouldRender
+ ${'there is a pipeline'} | ${true} | ${true}
+ ${'no pipeline'} | ${false} | ${false}
+ `('given $context', ({ hasPipeline, shouldRender }) => {
beforeEach(() => {
- gon.features.coreSecurityMrWidget = isFlagEnabled;
-
const mrData = {
...mockData,
...(hasPipeline ? {} : { pipeline: null }),