1

我有一个要运行的测试,它检查以确保传入正确的参数。但是我的实际文件已经有正确的声明,所以它不会让我编译。我尝试使用// @ts-ignore忽略评论,但它不起作用。我怎样才能让它忽略这个错误?

在我的实际文件中,声明:

interface Props {
    maxValue: number;
    fill?: string;
    value: number;
    width: number;
    height: number;
}
new CurvedMeter(props: Props) //how it is declared

在我的测试文件中:

it('throws if any neccesary props are missing', () => {
    const badProps = { maxValue: 100, value: 10, width: 100 };
    new CurvedMeter(badProps); // @ts-ignore <- does not work
    expect.any(Error);
});
4

1 回答 1

2

“hack”是将其转换为any

new CurvedMeter(badProps as any)
于 2018-03-30T19:57:44.323 回答