# async-test-tools.ts **Repository Path**: mirrors_twilio/async-test-tools.ts ## Basic Information - **Project Name**: async-test-tools.ts - **Description**: Helpers for testing async code - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-22 - **Last Updated**: 2025-09-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Async test tools === Sometimes for testing asynchronous code it's needed to run an event loop, to make promise.then method run, etc. With this library test with timeouts and async code would look like follows ``` it('Does what we want', () => { return Async.sequence([ () => { // make a first step here }, () => { // make a second step here }, ], () => { // All final checks, asserts and expects here }); });