0
Fork 0
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:
Naz 2020-11-10 17:15:08 +13:00
parent d8f7db8773
commit 7925f12fcc

View file

@ -9,7 +9,7 @@ const JobManager = require('../index');
describe('Job Manager', function () {
let logging;
beforeEach(() => {
beforeEach(function () {
logging = {
info: sinon.stub(),
error: sinon.stub()