This commit is contained in:
d98762625 2018-05-03 13:58:15 +01:00
parent 5fb50a1759
commit 5efc3f15f2
3 changed files with 6 additions and 8 deletions

View file

@ -9,8 +9,6 @@
* @license Apache-2.0
*/
import assert from "assert";
/**
* it - wrapper for assertions to provide a helpful description
* to the TestRegister

View file

@ -35,7 +35,7 @@ TestRegister.addApiTests([
try {
const fail = chef.setUnion("1");
// shouldnt get here
assert(false);
assert(!fail || false);
} catch (e) {
assert(true);
}