我正在使用Typescript 2.9.2在vscode中编写一个带有笑话和快速检查功能的小型测试,并且在最后一次出现错误“ TS1005:','预计。”和[TS]','线。 也许我丢失了一些东西,但是看起来这段代码似乎没有丢失任何东西?
test("up", () => {
fc.assert(fc.property(fc.integer(), (a) => {
const currentCount = initialState.count
Actions.up(a)(initialState)
expect(initialState.count).toEqual(currentCount + a)
})
})
关于上述代码为什么我会收到此错误消息的任何想法?
谢谢。