summaryrefslogtreecommitdiff
path: root/spec/javascripts/pipelines
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-10-04 13:32:54 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-10-05 11:43:07 +0200
commita2e6afdd8c3886ab7b0ac608da6c2952667fe877 (patch)
tree7c35034ef4ee5284b229758d4e7fbe1bb8a1326c /spec/javascripts/pipelines
parentd6e0738098dea1b243280f857ed05c68ad5a8397 (diff)
downloadgitlab-ce-a2e6afdd8c3886ab7b0ac608da6c2952667fe877.tar.gz
Fix frotnend pipeline specs for pipeline error badge
Diffstat (limited to 'spec/javascripts/pipelines')
-rw-r--r--spec/javascripts/pipelines/pipeline_url_spec.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/javascripts/pipelines/pipeline_url_spec.js b/spec/javascripts/pipelines/pipeline_url_spec.js
index c40842f80b4..cb8e4c32780 100644
--- a/spec/javascripts/pipelines/pipeline_url_spec.js
+++ b/spec/javascripts/pipelines/pipeline_url_spec.js
@@ -141,7 +141,8 @@ describe('Pipeline Url Component', () => {
},
}).$mount();
+
expect(component.$el.querySelector('.js-pipeline-url-failure').textContent).toContain('error');
- expect(component.$el.querySelector('.js-pipeline-url-failure').getAttribute('title')).toContain('some reason');
+ expect(component.$el.querySelector('.js-pipeline-url-failure').getAttribute('data-original-title')).toContain('some reason');
});
});