tests: Remove overly aggressive timeouts

This commit is contained in:
Richard Hansen 2021-10-02 19:09:12 -04:00
parent 90a2b553d1
commit 39a971e3b9
3 changed files with 0 additions and 37 deletions

View file

@ -18,7 +18,6 @@ describe(__filename, function () {
describe('Connectivity for instance-level API tests', function () {
it('can connect', function (done) {
this.timeout(150);
agent.get('/api/')
.expect('Content-Type', /json/)
.expect(200, done);
@ -27,7 +26,6 @@ describe(__filename, function () {
describe('getStats', function () {
it('Gets the stats of a running instance', function (done) {
this.timeout(100);
agent.get(endPoint('getStats'))
.expect((res) => {
if (res.body.code !== 0) throw new Error('getStats() failed');