summaryrefslogtreecommitdiff
path: root/spec/javascripts/registry
diff options
context:
space:
mode:
authorBrandon Labuschagne <blabuschagne@gitlab.com>2019-03-18 14:09:07 +0200
committerBrandon Labuschagne <blabuschagne@gitlab.com>2019-03-18 14:09:07 +0200
commit193362482d8a43589d0cb7407769e741e521911e (patch)
tree5ca17736e68cb6544e0b0b496775abaeba450f34 /spec/javascripts/registry
parent076ebedccf70f5f22483e7ea164922a9b19410d3 (diff)
downloadgitlab-ce-193362482d8a43589d0cb7407769e741e521911e.tar.gz
Fix failing tests
A number of the karma tests looked for the .fa-spinner class or the icon element used for the font awesome spinner class. These instances have been refactored to now look for the .spinner class instead.
Diffstat (limited to 'spec/javascripts/registry')
-rw-r--r--spec/javascripts/registry/components/app_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/registry/components/app_spec.js b/spec/javascripts/registry/components/app_spec.js
index 67118ac03a5..76a17e6fb31 100644
--- a/spec/javascripts/registry/components/app_spec.js
+++ b/spec/javascripts/registry/components/app_spec.js
@@ -99,7 +99,7 @@ describe('Registry List', () => {
it('should render a loading spinner', done => {
Vue.nextTick(() => {
- expect(vm.$el.querySelector('.fa-spinner')).not.toBe(null);
+ expect(vm.$el.querySelector('.spinner')).not.toBe(null);
done();
});
});