Replace static fixture for zen_mode_spec (!7686)
This commit is contained in:
parent
448c19aab1
commit
4b4fd743c3
3 changed files with 9 additions and 12 deletions
4
changelogs/unreleased/zen-mode-fixture.yml
Normal file
4
changelogs/unreleased/zen-mode-fixture.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
title: Replace static fixture for zen_mode_spec
|
||||
merge_request: 7686
|
||||
author: winniehell
|
|
@ -1,8 +0,0 @@
|
|||
.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() {
|
||||
|
|
Loading…
Reference in a new issue