0
私はテスト環境にKarma/Mochaを使用しています。私はURLを取得するwindow.location.hrefに依存するjsファイルがあります。私がKarmaを使ってテストを実行しているとき、デフォルトのURLはwww.localhost:3123/context.htmlです。 url/add paramatersを変更したり、この特定のテストスイートのカスタムURLを使用するようにカルマに言うことは可能ですか?Mocha/Karmaスタックのwindow.location.hrefを変更する
//JS file has
function populate(){
var url = new URL(window.location.href);
-- check if the url have parameter, lets say carInfo
-- if has then dispatches an event
}
//Mocha test
describe('...', function() {
it ('...', function() {
-- call populate()
-- listen if the event was triggered
})
})