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
Christopher Kolstad 3a65847aa7
Migrate to jest (#854)
* Migrate to jest
* Use --force-exit until dns close handle issue https://github.com/facebook/jest/issues/9982

Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
2021-05-28 11:10:24 +02:00

45 lines
942 B
JavaScript

'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');
test('should not throw when valid config', () => {
const config = createTestConfig();
const app = getApp(config, {}, {});
expect(typeof app.listen).toBe('function');
});
test('should call preHook', () => {
let called = 0;
const config = createTestConfig({
preHook: () => {
called++;
},
});
getApp(config, {}, {});
expect(called).toBe(1);
});
test('should call preRouterHook', () => {
let called = 0;
const config = createTestConfig({
preRouterHook: () => {
called++;
},
});
getApp(config, {}, {});
expect(called).toBe(1);
});