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>2022-02-21 06:18:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-02-21 06:18:12 +0300
commit9c70c5e1b4c3ab7e33341468638c08383df87f7f (patch)
treed99136e3df5ba97b06555a9c0c630da70d558c51 /spec/frontend_integration
parenteb8607408da45fd1174e9f42579f433e61bdd260 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend_integration')
-rw-r--r--spec/frontend_integration/ide/helpers/ide_helper.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/frontend_integration/ide/helpers/ide_helper.js b/spec/frontend_integration/ide/helpers/ide_helper.js
index 54a522324f5..00ce39a5598 100644
--- a/spec/frontend_integration/ide/helpers/ide_helper.js
+++ b/spec/frontend_integration/ide/helpers/ide_helper.js
@@ -106,7 +106,7 @@ const fillFileNameModal = async (value, submitText = 'Create file') => {
const nameField = await findByTestId(modal, 'file-name-field');
fireEvent.input(nameField, { target: { value } });
- const createButton = getByText(modal, submitText, { selector: 'button' });
+ const createButton = getByText(modal, submitText, { selector: 'button > span' });
createButton.click();
};