I am using JsTestDriver for unit tests in JS. One section of my code uses a confirm box to allow users to confirm or cancel a decision.

How to I test both the confirm and cancel selections of this confirm box automatically within the scope of JsTestDriver

link|improve this question

You probably can't. confirm boxes are not in the DOM AND block javascript. They are also horrible design. You should probably use a modal popup instead – Raynos Nov 1 '11 at 10:46
feedback

1 Answer

up vote 0 down vote accepted

Ok, the way I handled this was to use Jack.js mocking library to mock the confirm function returning both True and False in turn.

jack.expect('confirm')
    .exactly('1 time')
    .mock(function(strMessage) {
        return true;
    }
);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.