Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to knockoutjs and to qunit or any form of javascript unit testing. Are there any tutorials around that can help me unit test knockoutjs.

Thanks

Updated:

That's great. What I wanted to ask next was, how would you then move this to production code, say if you are serializing from asp.net mvc into a viewmodel variable that sits in an actual page, rather than in a testrunner page.

share|improve this question
Knockout uses JSSpec. See their unit tests – Raynos Jun 13 '11 at 14:39

2 Answers

There was a thread on this on the KO forums here the other day: https://groups.google.com/d/topic/knockoutjs/GMDYFOq2-yg/discussion

Here is a basic sample using QUnit: http://jsfiddle.net/rniemeyer/KF9k7/

Knockout itself uses JSSpec to run a suite of verifications. You can see the tests here: https://github.com/SteveSanderson/knockout/tree/master/spec or see them run here: http://knockoutjs.com/spec/runner.html

share|improve this answer
That's great. What I wanted to ask next was, how would you then move this to production code, say if you are serializing from asp.net mvc into a viewmodel variable that sits in an actual page, rather than in a testrunner page. – warpcore Jun 23 '11 at 9:06
A couple thoughts: if you really want to isolate your client-side logic, then you might want to consider mocking the data and using a test page. Another thought would be a creating a partial view that contains the testrunner elements and only render it when a special querystring param is passed. The actual tests would likely be in an external script and you could conditionally load it as well. Then, you could run your site as normal, but at any time add the querystring param to show the unit tests. – RP Niemeyer Jun 23 '11 at 13:36
Fixed fiddle for a bunch of dep errors jsfiddle.net/dRRDx – Louis Jul 25 '12 at 4:28
Thanks for the updates – RP Niemeyer Jul 25 '12 at 4:33
Louis, RP Niemeyer, Fixed broken link to knockout js in fiddle jsfiddle.net/dRRDx/1 – Martin Capodici Apr 26 at 8:19

After a short googling, I agree, there doesn't seem to be a tutorial for combining those exact two frameworks. Raynos pointed you can view the JSSpec unit tests for knockoutjs itself.
I have been dabbling myself in using both. As such, here are a few pointers:

  1. KnockoutJS separates your UI and behavior more than standard javascript - use that to your advantage. Write your qUnit tests against your ViewModel.
  2. I like to have a small script inline to the page I am working on that has an initialData variable on it that receives the information for the ViewModel. I then pass the information from it into the .js file I'm using for the page. This lets you setup a particular set of data for your tests that won't be looking for data in .js file, nor making some kind of AJAX call. Remember, you want a UNIT test.
  3. Speaking of AJAX, look into over-ride your library's AJAX calls, or get an AJAX mocking library. Having to get AJAX information back from your host will kill the length of time any unit testing takes, and if it starts taking enough time, you'll run your unit tests less and less.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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