basic-expressjs/utils/testServer.js

11 lines
202 B
JavaScript
Raw Permalink Normal View History

2021-09-15 18:47:11 +00:00
const express = require('express');
const supertest = require('supertest');
function testServer(route) {
const app = express();
route(app);
return supertest(app);
}
module.exports = testServer;