我在 $(document).ready(function()) 中有多个函数和大量代码。我正在使用 jasmine 测试 ready 函数中的函数以及 ready() 中的代码,但是当执行 describe 中的测试用例时,它无法访问 ready function() 中的代码。
我在 $(document).ready(function()) 中有多个函数和大量代码。我正在使用 jasmine 测试 ready 函数中的函数以及 ready() 中的代码,但是当执行 describe 中的测试用例时,它无法访问 ready function() 中的代码。
$(document).ready(function () {
function testMe(){
testVar = true;
}
});
Jasmine 测试套件
describe("test suite", function(){
beforeEach(function () {
testme = false
});
it("Test Alert Box Message For Change Modal", function() {
expect(testme).toEqual(true);
});
});
请建议上述方法需要采取什么方法。