1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/lib/app.test.js

45 lines
942 B
JavaScript
Raw Normal View History

2016-12-29 11:42:54 +01:00
'use strict';
const express = require('express');
const { createTestConfig } = require('../test/config/test-config');
jest.mock(
'./routes',
() =>
class Index {
router() {
return express.Router();
}
},
);
const getApp = require('./app');
2016-12-29 11:42:54 +01:00
test('should not throw when valid config', () => {
const config = createTestConfig();
const app = getApp(config, {}, {});
expect(typeof app.listen).toBe('function');
2016-12-29 11:42:54 +01:00
});
test('should call preHook', () => {
2016-12-29 11:42:54 +01:00
let called = 0;
const config = createTestConfig({
2017-06-28 10:17:14 +02:00
preHook: () => {
called++;
},
});
getApp(config, {}, {});
expect(called).toBe(1);
2016-12-29 11:42:54 +01:00
});
test('should call preRouterHook', () => {
2016-12-29 11:42:54 +01:00
let called = 0;
const config = createTestConfig({
2017-06-28 10:17:14 +02:00
preRouterHook: () => {
called++;
},
});
getApp(config, {}, {});
expect(called).toBe(1);
2016-12-29 11:42:54 +01:00
});