我使用Jasmine进行单元测试,并在我的代码中使用document.cookie。是否可以在我的测试文件中模拟document.cookie?
我发现我可以使用它:
var mock = {
value_: '',
get cookie() {
return this.value_;
},
set cookie(value) {
this.value_ += value + ';';
}
};
但我不知道如何告诉Javascript我想用这个而不是document.cookie? 有可能吗?