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')
-rw-r--r--spec/frontend/pipeline_wizard/templates/pages_spec.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/frontend/pipeline_wizard/templates/pages_spec.js b/spec/frontend/pipeline_wizard/templates/pages_spec.js
index f89e8f05475..72b3b1ca852 100644
--- a/spec/frontend/pipeline_wizard/templates/pages_spec.js
+++ b/spec/frontend/pipeline_wizard/templates/pages_spec.js
@@ -39,7 +39,11 @@ describe('Pages Template', () => {
}),
expect.objectContaining({
widget: 'checklist',
- title: 'Before we begin, please check:',
+ items: [
+ expect.objectContaining({
+ text: 'The application files are in the `public` folder',
+ }),
+ ],
}),
],
template: expect.stringContaining(VAR_BUILD_IMAGE),