我们可以在测试用例中使用几个预期条件,例如toBe,toEqual...。
expect('an expression').toBe('a value');
expect('an expression').toEqual('a value');
expect('an expression').*('a value');
我需要知道可以代替*
使用的关键字的域答案 0 :(得分:1)
尝试以下期望语句
expect(array).toContain(member);
如果整个array
包含特定的member
,则该语句将通过。
希望它对您有帮助
答案 1 :(得分:1)
如果我正确理解了您的问题,this页面将列出茉莉花匹配器。