1.0.7 • Published 7 years ago

async-test-tools v1.0.7

Weekly downloads
26
License
ISC
Repository
-
Last release
7 years ago

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
  });
});
1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago