1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/lib/app.test.js
ivaosthu ccaab0c47b fix: LogProvider as option injected to unleash.
Instead of instructing users to do static calls
in to Unleash, she should instead be allwed to
specify the log provider as an option to Unleash.

This commit introduces the "getLogger" option,
a function responsible for creating a logger.
2020-02-20 08:34:24 +01:00

41 lines
843 B
JavaScript

'use strict';
const test = require('ava');
const express = require('express');
const proxyquire = require('proxyquire');
const getLogger = require('../test/fixtures/no-logger');
const getApp = proxyquire('./app', {
'./routes': class Index {
router() {
return express.Router();
}
},
});
test('should not throw when valid config', t => {
const app = getApp({ getLogger });
t.true(typeof app.listen === 'function');
});
test('should call preHook', t => {
let called = 0;
getApp({
getLogger,
preHook: () => {
called++;
},
});
t.true(called === 1);
});
test('should call preRouterHook', t => {
let called = 0;
getApp({
getLogger,
preRouterHook: () => {
called++;
},
});
t.true(called === 1);
});