Ho più funzioni e molto codice all'interno di $(document).ready(function())
. Sto usando il gelsomino per testare le funzioni all'interno della funzione ready e il codice all'interno di ready()
ma quando i test case descritti sono eseguiti non è in grado di accedere al codice all'interno della funzione ready
.
$(document).ready(function () {
function testMe(){
testVar = true;
}
});
Suite di test Jasmine
describe("test suite", function(){
beforeEach(function () {
testme = false
});
it("Test Alert Box Message For Change Modal", function() {
expect(testme).toEqual(true);
});
});
Suggerire cortesemente quale approccio deve essere preso per l'approccio sopra.