Merge branch 'gt-remove-empty-spec-describe-blocks' into 'master'
Remove empty spec describe blocks Closes #52842 See merge request gitlab-org/gitlab-ce!22451
This commit is contained in:
commit
cad56768d5
4 changed files with 5 additions and 14 deletions
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue