使用Javascript模拟document.cookie

时间:2017-04-21 14:02:25

标签: javascript cookies

我使用Jasmine进行单元测试,并在我的代码中使用document.cookie。是否可以在我的测试文件中模拟document.cookie?

我发现我可以使用它:

var mock = {
    value_: '', 

    get cookie() {
        return this.value_;
    },

    set cookie(value) {
        this.value_ += value + ';';
    }
};

但我不知道如何告诉Javascript我想用这个而不是document.cookie? 有可能吗?

0 个答案:

没有答案