diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-02-07 11:23:23 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-02-07 11:23:23 +0100 |
commit | 9f10b2928df655c3672d9607e864e667d4bc903a (patch) | |
tree | 7743911b974b3a7fb0d4c7cec2a723942466b7f1 /tests/api/index.js | |
parent | d7c01e7793d813d804a3b5716d8288f9dcf71a16 (diff) | |
download | PeerTube-9f10b2928df655c3672d9607e864e667d4bc903a.tar.gz PeerTube-9f10b2928df655c3672d9607e864e667d4bc903a.tar.zst PeerTube-9f10b2928df655c3672d9607e864e667d4bc903a.zip |
Remove useless anonymous functions of files
Diffstat (limited to 'tests/api/index.js')
-rw-r--r-- | tests/api/index.js | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/tests/api/index.js b/tests/api/index.js index 3bdcdae2d..9c4fdd48a 100644 --- a/tests/api/index.js +++ b/tests/api/index.js | |||
@@ -1,10 +1,8 @@ | |||
1 | ;(function () { | 1 | 'use strict' |
2 | 'use strict' | ||
3 | 2 | ||
4 | // Order of the tests we want to execute | 3 | // Order of the tests we want to execute |
5 | require('./checkParams') | 4 | require('./checkParams') |
6 | require('./friendsBasic') | 5 | require('./friendsBasic') |
7 | require('./singlePod') | 6 | require('./singlePod') |
8 | require('./multiplePods') | 7 | require('./multiplePods') |
9 | require('./friendsAdvanced') | 8 | require('./friendsAdvanced') |
10 | })() | ||