jasmine-promise-wrapper
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

jasmine-promise-wrapper

Build Status

Purpose of this library

This library shall simplify promise handling within jasmine. To achieve this, it provides some wrapper functions which can handle returned promises. The specs will wait for the resolution or rejection of those promises.

API

The following wrapping functions are exported by this library:

  • it(description, fn, timeout)
  • beforeEach(fn, timeout)
  • afterEach(fn, timeout)
  • beforeAll(fn, timeout)
  • afterAll(fn, timeout)

Additionaly there is an invert(promise) function that takes promise and returns an inverted promise that is rejected with the original resolution or resolved with the original rejection. This comes in handy when expecting promises to be rejected.

Simple example

import {it} from "jasmine-promise-wrapper";
 
const unit = () =>
  new Promise(resolve =>
    setTimeout(() => resolve("success"), 1000));
 
it("should wait for a promise", () => {
  return unit()
    .then(result => {
      expect(result).toBe("success");
    });
});
 
// alternative with implicit returns:
 
it("should wait for a promise", () =>
  unit()
    .then(result =>
      expect(result).toBe("success")));
 
// alternative with async/await:
 
it("should wait for a promise", async () => {
  const result = await unit();
  expect(result).toBe("success");
});

Dependencies (0)

    Dev Dependencies (4)

    Package Sidebar

    Install

    npm i jasmine-promise-wrapper

    Weekly Downloads

    1,552

    Version

    0.0.3

    License

    MIT

    Last publish

    Collaborators

    • svi3c