本文整理汇总了TypeScript中assert.fail函数的典型用法代码示例。如果您正苦于以下问题:TypeScript fail函数的具体用法?TypeScript fail怎么用?TypeScript fail使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了fail函数的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: done
acquisition.queryUpdateWithCurrentPackage(invalidPackage, (error: Error, returnPackage: acquisitionSdk.RemotePackage | acquisitionSdk.NativeUpdateNotification) => {
assert.fail("Should throw an error if the native implementation gave an incorrect package");
done();
});
示例2:
w.on("delete", path => { assert.fail(path) })
示例4:
.then(c => assert.equal(c, 0), () => assert.fail());
示例5:
() => assert.fail('This promise should pass')
示例6:
}, error => {
assert.fail(error, null, 'Linter error, Output - ' + outputChannel.output);
});
示例7:
errorLogger: (err) => assert.fail(0, 1, 'Failed to register', err),
示例8:
() => { assert.fail(0, 1, 'Command should not resolve', ''); },