0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Fixed tests

refs TryGhost/Team#728

- After history migration the tests were referencing modules using
previous folder structure
This commit is contained in:
Naz 2021-06-02 18:22:54 +04:00
parent cb2c40d2cb
commit fd4e0a44c4

View file

@ -1,9 +1,10 @@
const should = require('should'); require('./utils');
const sinon = require('sinon'); const sinon = require('sinon');
const moment = require('moment'); const moment = require('moment');
const uuid = require('uuid'); const uuid = require('uuid');
const UpdateCheckService = require('../../../core/server/update-check-service'); const UpdateCheckService = require('../lib/update-check-service');
describe('Update Check', function () { describe('Update Check', function () {
const internal = {context: {internal: true}}; const internal = {context: {internal: true}};