我正在使用 ava (没有链接,因为我不允许使用超过 2 )进行测试,并且想要输入 ava 的测试上下文。它是在 ava 的定义文件中输入any
的。
我特别想要的是打字稿编译器知道它属于以下测试t.context
中的类型:{foo: number}
import test from 'ava'
test.beforeEach((t) => {
t.context = { foo: 5 }
})
test('Is context typed', (t) => {
// uncaught typo
t.is(t.context.fooo, 5)
})
我试图使用声明合并来做到这一点,但它失败了TS2403: Subsequent variable declarations must have the same type. Variable 'context' must be of type 'any', but here has type '{ foo: number; }'.
:
declare module 'ava' {
interface ContextualTestContext {
context: {
foo: number,
}
}
}
test.beforeEach((t) => {
t.context = { foo: 5 }
})
test('Is context typed', (t) => {
// uncaught ypo
t.is(t.context.fooo, 5)
})
有没有办法做到这一点,而无需像这样一直投射上下文:
interface IMyContext {
foo: number
}
test.beforeEach((t) => {
t.context = { foo: 5 }
})
test('Is context typed', (t) => {
const context = <IMyContext> t.context
// caught typo
t.is(context.fooo, 5)
})