本文整理汇总了TypeScript中power-assert.fail函数的典型用法代码示例。如果您正苦于以下问题:TypeScript fail函数的具体用法?TypeScript fail怎么用?TypeScript fail使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了fail函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('invalid format schema', async () => {
const schema = 'This string is not schema data and invalid JSON format {.' as any;
try {
await dtsgenerator({ contents: [schema] });
assert.fail();
} catch (e) {
assert.equal(e.message, 'There is no schema in the input contents.');
}
});
示例2: it
it('no id schema', async () => {
const schema: Schema = {
type: 'object',
};
try {
await dtsgenerator([schema]);
assert.fail();
} catch (e) {
assert.equal('There is no id in the input schema(s)', e.message);
}
});
示例4:
return o.fn().then(() => assert.fail(), (e) => { // o.fn is private