basic-auth icon indicating copy to clipboard operation
basic-auth copied to clipboard

Use Jasmine integration tests

Open louis49 opened this issue 10 years ago • 0 comments

Hello

How do run specs with this module?

what i do doesn't work (infinite wait):

if(typeof jasmine == 'undefined') { console.log("SPEC IS NOT RUNNING"); var basicAuth = new HttpBasicAuth(function(username, password) { return 'guest' == username & 'password' == password; }); basicAuth.protect(); } else { console.log("SPEC IS RUNNING"); }

louis49 avatar Sep 25 '15 14:09 louis49