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-25 15:09:19 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-25 15:09:19 +0300
commita156fc95eb8499fec9cd081d30629f0faf18bfe9 (patch)
treeff59d44794ba9d8084e4d59057ec9507b3ba8e2f /spec/frontend/integrations
parent618be8f52d6349533c709a1d702e45b84338c36a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/integrations')
-rw-r--r--spec/frontend/integrations/edit/components/dynamic_field_spec.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/frontend/integrations/edit/components/dynamic_field_spec.js b/spec/frontend/integrations/edit/components/dynamic_field_spec.js
index aaca9fc4e62..2ebb3333c0f 100644
--- a/spec/frontend/integrations/edit/components/dynamic_field_spec.js
+++ b/spec/frontend/integrations/edit/components/dynamic_field_spec.js
@@ -192,17 +192,6 @@ describe('DynamicField', () => {
expect(findGlFormGroup().find('label').text()).toBe(defaultProps.title);
});
-
- describe('for password field with some value (hidden by backend)', () => {
- it('renders label with new password title', () => {
- createComponent({
- type: 'password',
- value: 'true',
- });
-
- expect(findGlFormGroup().find('label').text()).toBe(`Enter new ${defaultProps.title}`);
- });
- });
});
describe('validations', () => {