mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Fixed lint for arrow function use in beforeEach block
This commit is contained in:
parent
d8f7db8773
commit
7925f12fcc
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ const JobManager = require('../index');
|
||||||
describe('Job Manager', function () {
|
describe('Job Manager', function () {
|
||||||
let logging;
|
let logging;
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(function () {
|
||||||
logging = {
|
logging = {
|
||||||
info: sinon.stub(),
|
info: sinon.stub(),
|
||||||
error: sinon.stub()
|
error: sinon.stub()
|
||||||
|
|
Loading…
Add table
Reference in a new issue