diff options
author | George Tsiolis <tsiolis.g@gmail.com> | 2018-10-18 14:01:11 +0300 |
---|---|---|
committer | George Tsiolis <tsiolis.g@gmail.com> | 2018-10-18 19:02:55 +0300 |
commit | e7763a58b509ea7607e2cd4f78e839efd78eb17b (patch) | |
tree | 03b57abf368c6c2092750b008bd82b70ee913874 /spec/javascripts/image_diff | |
parent | 80351981d244911716ac1283c3c0c77b7a205899 (diff) | |
download | gitlab-ce-e7763a58b509ea7607e2cd4f78e839efd78eb17b.tar.gz |
Remove empty spec describe blocks
Diffstat (limited to 'spec/javascripts/image_diff')
-rw-r--r-- | spec/javascripts/image_diff/image_diff_spec.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/spec/javascripts/image_diff/image_diff_spec.js b/spec/javascripts/image_diff/image_diff_spec.js index 9a7f288cd6b..21e7b8e2e9b 100644 --- a/spec/javascripts/image_diff/image_diff_spec.js +++ b/spec/javascripts/image_diff/image_diff_spec.js @@ -128,16 +128,6 @@ describe('ImageDiff', () => { }); }); - describe('image loaded', () => { - beforeEach(() => { - spyOn(imageUtility, 'isImageLoaded').and.returnValue(true); - imageDiff = new ImageDiff(element); - imageDiff.imageEl = imageEl; - }); - - it('should renderBadges', () => {}); - }); - describe('image not loaded', () => { beforeEach(() => { spyOn(imageUtility, 'isImageLoaded').and.returnValue(false); |