typescript 测试Typescript代码突出显示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 测试Typescript代码突出显示相关的知识,希望对你有一定的参考价值。

// compose : (A → B) -> (B → C) -> (A → C)
const compose = (f: Function, g: Function) => (x) => g(f(x))
it('(g ∘ f)(a) = g(f(a)) where a ∈ A', () => {
  const a: A = new A('s')         // a ∈ A
  const actual = compose(f, g)(a) // (g ∘ f)(a)
  const expected = g(f(a))        // g(f(a))
  expect(actual).to.deep.equal(expected)
  expect(actual instanceof C).to.be.true   // c ∈ C
  expect(expected instanceof C).to.be.true // c ∈ C
})

以上是关于typescript 测试Typescript代码突出显示的主要内容,如果未能解决你的问题,请参考以下文章

TypeScript 中的单元测试 [关闭]

在 vs 代码中调试用 typescript 节点编写的 jasmine 测试

Mocha 测试 TypeScript 奇怪的 TypeError

用 Jest 测试 Typescript 接口

如何运行用 TypeScript 编写的 Mocha 测试?

在 Typescript 单元测试中模拟