From 2f568c9cb8ae39ce40ec8df6d9acbaf0d5ae1a26 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Sun, 28 Mar 2021 18:54:16 +0200 Subject: [PATCH] Fixed copy-paste oversight ref #180 --- src/tests/cards/cards_add.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/cards/cards_add.spec.ts b/src/tests/cards/cards_add.spec.ts index 18da63c..05d8ace 100644 --- a/src/tests/cards/cards_add.spec.ts +++ b/src/tests/cards/cards_add.spec.ts @@ -168,7 +168,7 @@ describe('POST /api/cards/bulk successfully', () => { expect(res.headers['content-type']).toContain("application/json"); }); it('creating 50 new bulk cards and letting the system return it should return 200', async () => { - const res = await axios.post(base + '/api/cards/bulk?count=1&returnCards=true', {}, axios_config); + const res = await axios.post(base + '/api/cards/bulk?count=50&returnCards=true', {}, axios_config); expect(res.status).toEqual(200); expect(res.headers['content-type']).toContain("application/json"); expect(res.data.length).toEqual(50);