async-await-jasmine
TypeScript icon, indicating that this package has built-in type declarations

0.0.2 • Public • Published

async-await-jasmine

async-await-jasmine is utility for jasmine with async await.

Installation

npm install async-await-jasmine

Sample Code

import {$it} from "async-await-jasmine";
 
describe("async-test", () => {
 
    $it("in zone", async () => {
        await async_log("Hellow");
        await async_error("Hell");
    });
 
});
 
async function async_log(msg: string) {
    console.log("[async] " + msg);
}
 
async function async_error(msg: string) {
    await async_log("[async] " + msg);
    throw new Error(msg);
}

Motivation

Jasmine's async programing paradime is that assetion code call done method if it have done. But in the case using async await, assertion code throw exception when promise is rejected. So it don't call done method. And we must wait timeout and we get no error message.

Problem Code

describe("async-test", () => {
 
    it("out of zone", async (done) => {
        await async_log("Hellow");
        await async_error("Hell");
        // don't call this method when promise is rejected
        done();
    }, 1000);
 
});
 
async function async_log(msg: string) {
    console.log("[async] " + msg);
}
 
async function async_error(msg: string) {
    await async_log(msg);
    // Promise is rejected 
    throw new Error(msg);
}

Solution

async-await-jasmine uses zone.js.

zone.js can handle async error even if code is in zone. so when assetion code throw exception, async-await-jasmine automatically call fail and done metod. Then we need not wait timeout and we get error message.

Package Sidebar

Install

npm i async-await-jasmine

Weekly Downloads

46

Version

0.0.2

License

ISC

Last publish

Collaborators

  • kodo_san