added a assertion that actually works

This commit is contained in:
Ken Chau 2020-05-25 14:05:06 -07:00
Родитель 0dff8cb78c
Коммит c47f2667ea
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -37,6 +37,12 @@ describe("PGraph", () => {
graph.set("fn1", new Set(["fn2", "fail"]));
const pGraph = new PGraph(fns, graph);
await pGraph.run();
expect.assertions(1);
try {
await pGraph.run();
} catch (e) {
expect(e).toBeTruthy();
}
});
});