Fixed copy-paste oversight
continuous-integration/drone/pr Build is passing Details

ref #180
This commit is contained in:
Nicolai Ort 2021-03-28 18:54:16 +02:00
parent 1cb2dc9d53
commit 2f568c9cb8
1 changed files with 1 additions and 1 deletions

View File

@ -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);