mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
13 lines
378 B
JavaScript
13 lines
378 B
JavaScript
|
// Switch these lines once there are useful utils
|
||
|
// const testUtils = require('./utils');
|
||
|
require('./utils');
|
||
|
const MemberAttributionService = require('../lib/service');
|
||
|
|
||
|
describe('MemberAttributionService', function () {
|
||
|
describe('Constructor', function () {
|
||
|
it('doesn\'t throw', function () {
|
||
|
new MemberAttributionService({});
|
||
|
});
|
||
|
});
|
||
|
});
|