From af2b0b672949b08a9663d7a901f1f14288d0abe0 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Mon, 26 Apr 2021 15:01:10 +0100 Subject: [PATCH] Fixed broken require path (bridge in tests) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs: https://github.com/TryGhost/Ghost/commit/fdefa4964f031f8073ee2ee67b6507f033be712a - IDE didn't fix all the paths 🙈 --- test/unit/web/parent/middleware/ghost-locals_spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/web/parent/middleware/ghost-locals_spec.js b/test/unit/web/parent/middleware/ghost-locals_spec.js index f1ac9d90b4..64142d7dd7 100644 --- a/test/unit/web/parent/middleware/ghost-locals_spec.js +++ b/test/unit/web/parent/middleware/ghost-locals_spec.js @@ -1,7 +1,7 @@ const should = require('should'); const sinon = require('sinon'); const ghostLocals = require('../../../../../core/server/web/parent/middleware/ghost-locals'); -const bridge = require('../../../../../core/shared/bridge'); +const bridge = require('../../../../../core/bridge'); describe('Theme Handler', function () { let req;