上で構築このチャイとangularjsアプリをテストするチュートリアル、私は「べき」スタイルを使用して、未定義値のテストを追加したいです。これは失敗します:
it ('cannot play outside the board', function() {
scope.play(10).should.be.undefined;
});
エラー「TypeError:プロパティ '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))