1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/lib/app.test.js

36 lines
684 B
JavaScript
Raw Normal View History

2016-12-29 11:42:54 +01:00
'use strict';
const test = require('ava');
const proxyquire = require('proxyquire');
const getApp = proxyquire('./app', {
'./routes': {
createAPI: () => {},
createLegacy: () => {},
},
});
test('should not throw when valid config', t => {
const app = getApp({});
t.true(typeof app.listen === 'function');
});
test('should call preHook', t => {
let called = 0;
2017-06-28 10:17:14 +02:00
getApp({
preHook: () => {
called++;
},
});
2016-12-29 11:42:54 +01:00
t.true(called === 1);
});
test('should call preRouterHook', t => {
let called = 0;
2017-06-28 10:17:14 +02:00
getApp({
preRouterHook: () => {
called++;
},
});
2016-12-29 11:42:54 +01:00
t.true(called === 1);
});