I am using Jasmine (BDD Testing Framework for JavaScript) in my firefox add-on to test the functionality of my code.

The problem is that jasmine is outputing the test results to an HTML file,what I need is to Firebug Console or other solution to output the results.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Have you tried the ConsoleRepoter

jasmine.getEnv().addReporter(new jasmine.ConsoleReporter(console.log));

According to the code Jasmine has the ConsoleReporter class that executes a print function (in this case console.log) that should do what you need.

If all else fails you could just use this as a starting point to implement your own console.log reporter.

link|improve this answer
Have you implemented Jasmine for iPhone??? if yes, does the ConsoleReporter works for getting output in Console of iPhone?? – DShah Jan 10 at 12:34
Can you help me with my question?? stackoverflow.com/questions/8798956/… – DShah Jan 10 at 12:35
feedback

Your Answer

 
or
required, but never shown

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