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:
authorGeorge Tsiolis <tsiolis.g@gmail.com>2018-10-18 14:01:11 +0300
committerGeorge Tsiolis <tsiolis.g@gmail.com>2018-10-18 19:02:55 +0300
commite7763a58b509ea7607e2cd4f78e839efd78eb17b (patch)
tree03b57abf368c6c2092750b008bd82b70ee913874 /spec/javascripts/image_diff
parent80351981d244911716ac1283c3c0c77b7a205899 (diff)
Remove empty spec describe blocks
Diffstat (limited to 'spec/javascripts/image_diff')
-rw-r--r--spec/javascripts/image_diff/image_diff_spec.js10
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);