Skip to content

Commit

Permalink
fix: Add more sleep in lists tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alkihis committed Dec 8, 2021
1 parent dcde41e commit a2170be
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/list.v1.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ describe('List endpoints for v1.1 API', () => {
it('.addListMembers/.removeListMembers/.listMembers/.listStatuses - Manage list members and list statuses', async () => {
const newList = await client.v1.createList({ name: 'test list', mode: 'private' });

await sleepTest(1000);
await client.v1.addListMembers({ list_id: newList.id_str, user_id: '12' });
await sleepTest(1000);

Expand Down

0 comments on commit a2170be

Please sign in to comment.