0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 14:12:40 +00:00

Remove commented out delay

This commit is contained in:
G.Ambatte
2022-03-26 20:55:50 +13:00
parent c0c08b3354
commit 42ee461f56

View File

@@ -4,10 +4,6 @@ const supertest = require('supertest');
const app = supertest.agent(require('app.js').app)
.set('X-Forwarded-Proto', 'https');
// const timeout = 10000; //ms
// const start = Date.now();
// while (Date.now() < start + timeout){};
describe('Tests for static pages', ()=>{
it('Home page works', ()=>{
return app.get('/').expect(200);