mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-18 02:21:47 -05:00
Fixed MagicLink tests
no-issue The JWTTokenProvider is now exported from the index
This commit is contained in:
parent
97ceb13d42
commit
9c093c6beb
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
|||
const should = require('should');
|
||||
const sinon = require('sinon');
|
||||
const MagicLink = require('../');
|
||||
const JWTTokenProvider = require('../JWTTokenProvider');
|
||||
const crypto = require('crypto');
|
||||
|
||||
const sandbox = sinon.createSandbox();
|
||||
|
@ -15,7 +14,7 @@ describe('MagicLink', function () {
|
|||
describe('#sendMagicLink', function () {
|
||||
it('Sends an email to the user with a link generated from getSigninURL(token, type)', async function () {
|
||||
const options = {
|
||||
tokenProvider: new JWTTokenProvider(secret),
|
||||
tokenProvider: new MagicLink.JWTTokenProvider(secret),
|
||||
getSigninURL: sandbox.stub().returns('FAKEURL'),
|
||||
getText: sandbox.stub().returns('SOMETEXT'),
|
||||
getHTML: sandbox.stub().returns('SOMEHTML'),
|
||||
|
|
Loading…
Add table
Reference in a new issue