encore des tests
continuous-integration/drone/push Build is failing Details

peristanceBDD
Thomas Chazot 2 years ago
parent e9545b8995
commit 669b420c18

@ -9,9 +9,8 @@ const app = express();
const server = http.createServer(app); const server = http.createServer(app);
const io = new Server(server); const io = new Server(server);
app.get('/', function (req, res) { app.get('/', function (req, res) {
res.log("it should work"); res.send('it should work');
}); });
io.on('connection', (socket) => { io.on('connection', (socket) => {
@ -59,6 +58,6 @@ io.on('connection', (socket) => {
}); });
}); });
server.listen(3000, () => { server.listen("https://codefirst.iut.uca.fr/containers/BOB_PARTEAM-server-bobParty", 3000, () => {
console.log('listening on *:3000'); console.log('listening on *:3000');
}); });
Loading…
Cancel
Save