Commit e7763a58 authored by George Tsiolis's avatar George Tsiolis

Remove empty spec describe blocks

parent 80351981
---
title: Remove empty spec describe blocks
merge_request: 22451
author: george Tsiolis
type: other
......@@ -18,8 +18,6 @@ describe('BalsamiqViewer', () => {
});
});
describe('fileLoaded', () => {});
describe('loadFile', () => {
let xhr;
let loadFile;
......
......@@ -279,8 +279,6 @@ describe('Multi-file store actions', () => {
});
});
describe('popHistoryState', () => {});
describe('scrollToTab', () => {
it('focuses the current active element', done => {
document.body.innerHTML +=
......
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment