diff options
Diffstat (limited to 'testing/test.ts')
| -rw-r--r-- | testing/test.ts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/testing/test.ts b/testing/test.ts index 347a31b56..a27ffb263 100644 --- a/testing/test.ts +++ b/testing/test.ts @@ -35,7 +35,13 @@ test(function testingAssertFail() { let didThrow = false; assert.throws(assert.fail, Error, "Failed assertion."); - assert.throws(() => { assert.fail("foo"); }, Error, "Failed assertion: foo"); + assert.throws( + () => { + assert.fail("foo"); + }, + Error, + "Failed assertion: foo" + ); }); test(function testingAssertEqualActualUncoercable() { |
