describe(it())和describe(test())的不同之处

时间:2018-03-09 03:14:54

标签: reactjs unit-testing testing jest

我在ReactJS中看到过许多测试用例()

示例:

describe('General behaviour', () => {
  it('should call toggle() when clicked', () => {
    // expect something 
});

我看到了jest使用test()

的例子

示例:

describe('matching cities to foods', () => {
  test('Vienna <3 sausage', () => {
    expect(isValidCityFoodPair('Vienna', 'Wiener Schnitzel')).toBe(true);
});

see more jest for react example in this link

它们有什么不同?

1 个答案:

答案 0 :(得分:1)

{{1}}只是test aliased.

来自Jasmine和其他测试框架的人使用`it。