document
従来の TypeScript クラスを単体テストできるようにするには、何らかの方法でオブジェクトをモックする必要があります。このクラスは、サードパーティ モジュールのを持つ別のクラス ( View.ts
) をインポートし、次に、存在すると想定される別のものをインポートします。import
document
私の輸入チェーン:
controller.ts -> view.ts -> dragula -> crossvent -> custom-event
// Controller.ts:
import { View } from './View';
// View.ts:
const dragula = require('dragula');
// dragula requires crossvent, which requires custom-event, which does this:
module.exports = useNative() ? NativeCustomEvent :
'function' === typeof document.createEvent ? function CustomEvent (type, params) {
var e = document.createEvent('CustomEvent');
// ...
} : function CustomEvent (type, params) {
// ...
}
// controller.spec.ts:
import { Controller } from '../../src/Controller';
私が得ているエラー:
ReferenceError: ドキュメントが定義されていません
次のように、 proxyquireでモックView
を試みました。
beforeEach( () => {
viewStub = {};
let view:any = proxyquire('../../src/View', { 'View': viewStub });
viewStub.constructor = function():void { console.log('hello!'); };
});
私の問題は、ステートメントView
が原因で、が初期化される前でもエラーがポップアップすることです。import