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>2020-02-08 00:08:39 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-08 00:08:39 +0300
commit0c6bc5443aa6c8f3e4becccb89fc0f135b4c64c8 (patch)
tree55f13e752e9061c1800cce510a52fc78b13282ca /spec/javascripts
parentd7ce7307dca551759ffa972015875f8ebe476927 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/javascripts')
-rw-r--r--spec/javascripts/cycle_analytics/banner_spec.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/spec/javascripts/cycle_analytics/banner_spec.js b/spec/javascripts/cycle_analytics/banner_spec.js
index 86408c18dda..06fbaa68ffc 100644
--- a/spec/javascripts/cycle_analytics/banner_spec.js
+++ b/spec/javascripts/cycle_analytics/banner_spec.js
@@ -16,8 +16,10 @@ describe('Cycle analytics banner', () => {
vm.$destroy();
});
- it('should render cycle analytics information', () => {
- expect(vm.$el.querySelector('h4').textContent.trim()).toEqual('Introducing Cycle Analytics');
+ it('should render value stream analytics information', () => {
+ expect(vm.$el.querySelector('h4').textContent.trim()).toEqual(
+ 'Introducing Value Stream Analytics',
+ );
expect(
vm.$el
@@ -25,7 +27,7 @@ describe('Cycle analytics banner', () => {
.textContent.trim()
.replace(/[\r\n]+/g, ' '),
).toContain(
- 'Cycle Analytics gives an overview of how much time it takes to go from idea to production in your project.',
+ 'Value Stream Analytics gives an overview of how much time it takes to go from idea to production in your project.',
);
expect(vm.$el.querySelector('a').textContent.trim()).toEqual('Read more');