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/artifacts_settings/components/keep_latest_artifact_checkbox_spec.js')
-rw-r--r--spec/frontend/artifacts_settings/components/keep_latest_artifact_checkbox_spec.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/spec/frontend/artifacts_settings/components/keep_latest_artifact_checkbox_spec.js b/spec/frontend/artifacts_settings/components/keep_latest_artifact_checkbox_spec.js
index fe2886d6c95..b0d1b70c198 100644
--- a/spec/frontend/artifacts_settings/components/keep_latest_artifact_checkbox_spec.js
+++ b/spec/frontend/artifacts_settings/components/keep_latest_artifact_checkbox_spec.js
@@ -120,23 +120,4 @@ describe('Keep latest artifact checkbox', () => {
expect(findCheckbox().attributes('disabled')).toBeUndefined();
});
});
-
- describe('when application keep latest artifact setting is disabled', () => {
- it('checkbox is disabled when application setting is disabled', async () => {
- createComponent({
- keepLatestArtifactApplicationQueryHandler: jest.fn().mockResolvedValue({
- data: {
- ciApplicationSettings: {
- keepLatestArtifact: false,
- },
- },
- }),
- });
-
- await wrapper.vm.$nextTick();
-
- expect(wrapper.element).toMatchSnapshot();
- expect(findCheckbox().attributes('disabled')).toBe('true');
- });
- });
});