Commit 4b4fd743 authored by winniehell's avatar winniehell

Replace static fixture for zen_mode_spec (!7686)

parent 448c19aa
---
title: Replace static fixture for zen_mode_spec
merge_request: 7686
author: winniehell
.md-area
.zen-backdrop
%textarea#note_note.js-gfm-input.markdown-area
%a.js-zen-enter(tabindex="-1" href="#")
%i.fa.fa-expand
Edit in fullscreen
%a.js-zen-leave(tabindex="-1" href="#")
%i.fa.fa-compress
......@@ -6,9 +6,10 @@
var enterZen, escapeKeydown, exitZen;
describe('ZenMode', function() {
fixture.preload('zen_mode.html');
var fixtureName = 'issues/open-issue.html.raw';
fixture.preload(fixtureName);
beforeEach(function() {
fixture.load('zen_mode.html');
fixture.load(fixtureName);
spyOn(Dropzone, 'forElement').and.callFake(function() {
return {
enable: function() {
......@@ -60,11 +61,11 @@
});
enterZen = function() {
return $('a.js-zen-enter').click();
return $('.js-zen-enter').click();
};
exitZen = function() { // Ohmmmmmmm
return $('a.js-zen-leave').click();
return $('.js-zen-leave').click();
};
escapeKeydown = function() {
......
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