diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-11-16 18:40:50 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-11-27 19:40:52 +0100 |
commit | 47e0652b4a98916d4a1d012fbec61afd73a30565 (patch) | |
tree | 8d400cce95b50d18921b30fea1d5d2d89b5da740 /server/tests/api | |
parent | 41dbdb8acff3ac56187e8149eab0ff82e2377597 (diff) | |
download | PeerTube-47e0652b4a98916d4a1d012fbec61afd73a30565.tar.gz PeerTube-47e0652b4a98916d4a1d012fbec61afd73a30565.tar.zst PeerTube-47e0652b4a98916d4a1d012fbec61afd73a30565.zip |
Optimize account creation
Diffstat (limited to 'server/tests/api')
-rw-r--r-- | server/tests/api/config.ts | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/server/tests/api/config.ts b/server/tests/api/config.ts index 3dda3b4d7..72a9e5679 100644 --- a/server/tests/api/config.ts +++ b/server/tests/api/config.ts | |||
@@ -15,7 +15,7 @@ describe('Test config', function () { | |||
15 | let server = null | 15 | let server = null |
16 | 16 | ||
17 | before(async function () { | 17 | before(async function () { |
18 | this.timeout(120000) | 18 | this.timeout(10000) |
19 | 19 | ||
20 | await flushTests() | 20 | await flushTests() |
21 | server = await runServer(1) | 21 | server = await runServer(1) |
@@ -29,9 +29,11 @@ describe('Test config', function () { | |||
29 | }) | 29 | }) |
30 | 30 | ||
31 | it('Should have a correct config on a server with registration enabled and a users limit', async function () { | 31 | it('Should have a correct config on a server with registration enabled and a users limit', async function () { |
32 | await registerUser(server.url, 'user1', 'super password') | 32 | await Promise.all([ |
33 | await registerUser(server.url, 'user2', 'super password') | 33 | registerUser(server.url, 'user1', 'super password'), |
34 | await registerUser(server.url, 'user3', 'super password') | 34 | registerUser(server.url, 'user2', 'super password'), |
35 | registerUser(server.url, 'user3', 'super password') | ||
36 | ]) | ||
35 | 37 | ||
36 | const res = await getConfig(server.url) | 38 | const res = await getConfig(server.url) |
37 | const data = res.body | 39 | const data = res.body |