aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/api/check-params/accounts.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-04-24 11:54:23 +0200
committerChocobozzz <me@florianbigard.com>2019-04-24 16:26:24 +0200
commit86ebdf8c46f0663610196b7b012ca1d9c43e1bb2 (patch)
treee9a668dca205fe10b7064c3779d97df72e7e0d82 /server/tests/api/check-params/accounts.ts
parent5fb6996b811a0cf266750d3c82e876079c8bc19e (diff)
downloadPeerTube-86ebdf8c46f0663610196b7b012ca1d9c43e1bb2.tar.gz
PeerTube-86ebdf8c46f0663610196b7b012ca1d9c43e1bb2.tar.zst
PeerTube-86ebdf8c46f0663610196b7b012ca1d9c43e1bb2.zip
Use parallel tests
Diffstat (limited to 'server/tests/api/check-params/accounts.ts')
-rw-r--r--server/tests/api/check-params/accounts.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/tests/api/check-params/accounts.ts b/server/tests/api/check-params/accounts.ts
index 086090533..4f79685bd 100644
--- a/server/tests/api/check-params/accounts.ts
+++ b/server/tests/api/check-params/accounts.ts
@@ -2,7 +2,7 @@
2 2
3import 'mocha' 3import 'mocha'
4 4
5import { flushTests, killallServers, flushAndRunServer, ServerInfo } from '../../../../shared/extra-utils' 5import { cleanupTests, flushAndRunServer, ServerInfo } from '../../../../shared/extra-utils'
6import { 6import {
7 checkBadCountPagination, 7 checkBadCountPagination,
8 checkBadSortPagination, 8 checkBadSortPagination,
@@ -42,7 +42,7 @@ describe('Test accounts API validators', function () {
42 }) 42 })
43 }) 43 })
44 44
45 after(function () { 45 after(async function () {
46 killallServers([ server ]) 46 await cleanupTests([ server ])
47 }) 47 })
48}) 48})