에 구축 이 차이가있는 AngularJS와 응용 프로그램을 테스트 튜토리얼, 나는 "해야"스타일을 사용하여 정의되지 않은 값에 대한 테스트를 추가 할. 이것은 실패합니다.
it ('cannot play outside the board', function() {
scope.play(10).should.be.undefined;
});
"TypeError : Cannot read property 'should'of undefined"오류가 있지만 테스트는 "expect"스타일로 통과합니다.
it ('cannot play outside the board', function() {
chai.expect(scope.play(10)).to.be.undefined;
});
"should"로 작업하려면 어떻게해야합니까?
assert.isUndefined(scope.play(10))