Tests boilerplate

This commit is contained in:
Clément GOUIN
2019-06-19 11:36:56 +02:00
parent 559ea661b3
commit fe5e082e6a
8 changed files with 21 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
const express = require('express');
const app = express();
module.exports = function(/*config*/){
app.get('/', (req,res) => {
res.status(200).send('Hello World!');
});
return app;
};