diff options
Diffstat (limited to 'server/tests/api/checkParams.js')
-rw-r--r-- | server/tests/api/checkParams.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/api/checkParams.js b/server/tests/api/checkParams.js index 7f22a37cc..c1ba9c2c0 100644 --- a/server/tests/api/checkParams.js +++ b/server/tests/api/checkParams.js | |||
@@ -1,10 +1,10 @@ | |||
1 | 'use strict' | 1 | 'use strict' |
2 | 2 | ||
3 | const async = require('async') | ||
4 | const chai = require('chai') | 3 | const chai = require('chai') |
5 | const expect = chai.expect | 4 | const expect = chai.expect |
6 | const pathUtils = require('path') | 5 | const pathUtils = require('path') |
7 | const request = require('supertest') | 6 | const request = require('supertest') |
7 | const series = require('async/series') | ||
8 | 8 | ||
9 | const utils = require('./utils') | 9 | const utils = require('./utils') |
10 | 10 | ||
@@ -57,7 +57,7 @@ describe('Test parameters validator', function () { | |||
57 | before(function (done) { | 57 | before(function (done) { |
58 | this.timeout(20000) | 58 | this.timeout(20000) |
59 | 59 | ||
60 | async.series([ | 60 | series([ |
61 | function (next) { | 61 | function (next) { |
62 | utils.flushTests(next) | 62 | utils.flushTests(next) |
63 | }, | 63 | }, |