Tests boilerplate
This commit is contained in:
+12
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user