diff options
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/checkParams.js | 2 | ||||
-rw-r--r-- | server/tests/api/singlePod.js | 2 | ||||
-rw-r--r-- | server/tests/api/utils.js | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/api/checkParams.js b/server/tests/api/checkParams.js index 1c1ec71b3..01b620873 100644 --- a/server/tests/api/checkParams.js +++ b/server/tests/api/checkParams.js | |||
@@ -252,7 +252,7 @@ describe('Test parameters validator', function () { | |||
252 | it('Should have 404 with nothing', function (done) { | 252 | it('Should have 404 with nothing', function (done) { |
253 | request(url) | 253 | request(url) |
254 | .delete(path) | 254 | .delete(path) |
255 | .expect(404, done) | 255 | .expect(400, done) |
256 | }) | 256 | }) |
257 | 257 | ||
258 | it('Should fail without a mongodb id', function (done) { | 258 | it('Should fail without a mongodb id', function (done) { |
diff --git a/server/tests/api/singlePod.js b/server/tests/api/singlePod.js index 3dd72c01b..d572aacf6 100644 --- a/server/tests/api/singlePod.js +++ b/server/tests/api/singlePod.js | |||
@@ -112,7 +112,7 @@ describe('Test a single pod', function () { | |||
112 | utils.removeVideo(url, video_id, function (err) { | 112 | utils.removeVideo(url, video_id, function (err) { |
113 | if (err) throw err | 113 | if (err) throw err |
114 | 114 | ||
115 | fs.readdir(pathUtils.join(__dirname, '../../test1/uploads/'), function (err, files) { | 115 | fs.readdir(pathUtils.join(__dirname, '../../../test1/uploads/'), function (err, files) { |
116 | if (err) throw err | 116 | if (err) throw err |
117 | 117 | ||
118 | expect(files.length).to.equal(0) | 118 | expect(files.length).to.equal(0) |
diff --git a/server/tests/api/utils.js b/server/tests/api/utils.js index 47b706294..c70696571 100644 --- a/server/tests/api/utils.js +++ b/server/tests/api/utils.js | |||
@@ -22,7 +22,7 @@ var testUtils = { | |||
22 | // ---------------------- Export functions -------------------- | 22 | // ---------------------- Export functions -------------------- |
23 | 23 | ||
24 | function flushTests (callback) { | 24 | function flushTests (callback) { |
25 | exec(pathUtils.join(__dirname, '../../scripts/clean_test.sh'), callback) | 25 | exec(pathUtils.join(__dirname, '../../../bin/clean_test.sh'), callback) |
26 | } | 26 | } |
27 | 27 | ||
28 | function getFriendsList (url, end) { | 28 | function getFriendsList (url, end) { |
@@ -139,7 +139,7 @@ function runServer (number, callback) { | |||
139 | detached: true | 139 | detached: true |
140 | } | 140 | } |
141 | 141 | ||
142 | var app = fork(pathUtils.join(__dirname, '../../server.js'), [], options) | 142 | var app = fork(pathUtils.join(__dirname, '../../../server.js'), [], options) |
143 | app.stdout.on('data', function onStdout (data) { | 143 | app.stdout.on('data', function onStdout (data) { |
144 | var dont_continue = false | 144 | var dont_continue = false |
145 | // Check if all required sentences are here | 145 | // Check if all required sentences are here |