Tagged Questions
QUnit is a powerful, easy-to-use, JavaScript test suite. It's used by the jQuery project to test its code and plugins but is capable of testing any generic JavaScript code (and even capable of testing JavaScript code on the server-side).
26
votes
15answers
4k views
What are some JavaScript Unit Testing and Mocking Frameworks you have used?
My main JavaScript framework is jQuery so I would like my unit test and mocking frameworks to be compatible with that. I'd rather not have to introduce another JavaScript framework.
I am currently ...
22
votes
5answers
5k views
Running JavaScript unit tests headlessly in a Continuous Integration build
I have a webapp build plan running on a Continuous Integration system (Atlassian Bamboo 2.5). I need to incorporate QUnit-based JavaScript unit tests into the build plan so that on each build, the ...
12
votes
1answer
1k views
QUnit vs Jasmine?
What are the main differences between these two testing frameworks?
Which one is right for me?
I am a totally new to Test Driven Development and starting from the very beginning.
10
votes
4answers
188 views
Post-mortem unit testing
I do version control with Git, and unit testing with QUnit. Sometimes I find a bug in my software that was not present in a past version. It's easy for me to write a unit test specifically for that ...
8
votes
5answers
1k views
Testing Javascript that Manipulates the DOM
I've been looking into javascript test suites and I have found QUnit to be very interesting. I understand how to test computational code, but...
How do you test javascript applications written ...
8
votes
3answers
2k views
Qunit parameterized tests and mocking
I have two questions:
Can you have parameterised unit tests in qunit?
How do you do mocking with qunit e.g. mocking a getJSON call?
Thanks
7
votes
3answers
135 views
Writing “unit testable” jQuery code?
Up untill now I was used to write all my code inside the ready() function like:
$(document).ready(function() {
// all my code
});
Now I see that with this approach, my code is not "unit ...
7
votes
3answers
1k views
Recommended structure for testing Javascript with QUnit in ASP.NET
I have a standard ASP.NET MVC (version 2 preview 2) solution with the actual project and server-side unit tests in separate projects.
Because this project is very client-side heavy, I want to make ...
7
votes
3answers
3k views
QUnit with Ajax! QUnit passes the failing tests!
I am looking into QUnit for JavaScript unit testing. I am in a strange situation where I am checking against the value returned from the Ajax call.
For the following test I am purposely trying to ...
5
votes
2answers
193 views
Can JavaScript be “unit testable” if wrapped in self-executing anonymous function
As I see many times, a self-executing anonymous function is used to contain entire libraries. How can these libraries be tested, if e.g. QUnit cannot access anything inside the anonymous function ...
5
votes
2answers
123 views
Testing within a javascript closure
Is it possible to unit test javascript functions that exist within a closure, so for example, given the following:
(function() {
var a = function() {
//do something
}
window.b = function() ...
5
votes
2answers
521 views
Using qUnit for Javascript testing
I love qUnit for JavaScrit unit testing, and have succesfully used it for a large web hosting platform that is almost exclusively AJAX. However, I have to run it in a browser by hnad, or as a Windows ...
5
votes
1answer
537 views
Ajax unit testing mocking using Jack
I am using Jack as JavaScript mocking library. http://github.com/keronsen/jack . I am also using qunit.
I have following AJAX call in my javascript code which I am tring to write test for.
$.ajax({
...
5
votes
2answers
353 views
Javascript Sandbox unit testing
I am using QUnit, which is excellent.
I have enclosed my JS app in the (function () {})(); sandbox. This hides a lot of code that I don't want public, but I also need to test that code.
Here is an ...
5
votes
1answer
1k views
How to unit test jQuery keyboard events?
Is there a way to test JavaScript keyboard event handlers (for keypress, keyup, keydown events)?
I know I can declare event handlers like this:
function keyUpEvHandler(e) {
... // code here
}
...
4
votes
2answers
62 views
How to write this JavaScript code without eval (QUnit mocking)?
I've been experimenting with QUnit tests and was looking for a good method to override functions with mocks so as to enable more atomic tests. There are good solutions out there for specific cases, ...
4
votes
2answers
272 views
QUnit + coffeescript scope
In Javascript polluting the global namespace is generally regarded as a bad thing. This is why Coffeescript wraps all of your Javascript in a (function() {}).call(this); wrapper.
However, I've begun ...
4
votes
2answers
524 views
How can I delay document.ready until a variable is set?
I am doing QUnit testing in an IFRAME and have a recursive JavaScript function that loads all of the scripts from the parent page into the IFRAME before starting QUnit. This works great. My problem ...
4
votes
2answers
266 views
I need a number of different full-page DOM samples for my qUnit test suite
I have a small amount of Javascript to test, but it operates on the entire page, for example, finding elements by numbered ids like "#t34". I need to create a handful of different pages to test the ...
4
votes
3answers
443 views
How can we execute Unit Tests against DOM manipulation?
The introduction to QUnit over at netTuts.com spawns an interesting exchange (never resolved) over how to apply unit tests against actions that manipulate the DOM. The following quote (Alex York) gets ...
4
votes
4answers
437 views
A standard event messaging system with AJAX?
Is there any standards or messaging framework for AJAX?
Right now I have a single page that loads content using Ajax. Because I had a complex form for data entry as part of my content, I need to ...
4
votes
1answer
230 views
QUnit output: visual separation of modules
My tests may look like this:
module("some module");
test("test A", ...);
test("test B", ...);
module("other module");
test("test C", ...);
test("test D", ...);
The output of QUnit will look like ...
3
votes
1answer
84 views
Unit Test ajax failure with Q-Unit
I'm using jQuery $.when to handle ajax callbacks, and I'm using mockjax to simulate various responses in my unit tests. One of the responses returns a status error of 500. My failure callback throws ...
3
votes
1answer
147 views
Resetting a KnockoutJS ViewModel in QUnit Tests
I'm just getting started with Knockout JS and with QUnit for doing unit tests of my knockout view model. The problem that I'm running into is that if I have multiple tests in my qunit test javascript ...
3
votes
2answers
130 views
How do I escape CoffeeScript reserved words?
I'm trying to run some unit tests using QUnit written in CoffeeScript but there seems to be some reserved words that are causing problems, most notably "not". Is there a way to escape a CoffeeScript ...
3
votes
2answers
75 views
Testing a whole page redirect in qUnit
I have the following function
var redirect = function() {
window.location.href = "http://www.google.com";
}
I want to test this function using qUnit.
The problem is, when I call up the HTML ...
3
votes
1answer
149 views
Loading support script for Resharpers QUnit testrunner
I've been using QUnit to test some javascript in my VS2011 solution and recently updated Resharper that supports QUnit in its testrunner.
When i manually ran the tests before, i would load the html ...
3
votes
1answer
268 views
qunit - test exception message?
So QUnit provides the "raise" assertion to test if an exception is thrown. Is there any way to test the actual message thrown by the exception, though? For instance, say I have this function:
...
3
votes
2answers
324 views
Qunit: Test leakage
I have a leakage problem when testing my jQuery plugin. The problem occurs when I want to mock out a value or function on a literal object.
Example:
test('Overwrite some default setting', ...
3
votes
2answers
246 views
Excluding files from being deployed with Capistrano while still under version control with Git
I want to start testing the JavaScript in my Rails apps with qUnit and I'm wondering how to keep the test JavaScript and test runner HTML page under version control (I'm using Git, of course) but keep ...
2
votes
0answers
75 views
How to get the HTML of ASP.NET MVC 3 page into a QUnit test?
I've started using QUnit for testing the jQuery code of a certain page in my ASP.NET MVC3 application. So far I've provided a HTML-mock which the javascript-file under test uses. Is it possible to ...
2
votes
1answer
101 views
Non-blocking asynchronous tests using QUnit
It seems that the QUnit functions stop() and start() allow to wait for asynchronous tests, but during that waiting period the whole test suite hangs. Is there a way to run asynchronous tests in a ...
2
votes
2answers
93 views
Testing a live website with QUnit
Can I test live websites using QUnit? For example, can I write a test that says:
Go to google.com
Enter a search term
Click 'Google Search'
Check there are 10 results and 2 ads
Would QUnit be an ...
2
votes
1answer
99 views
knockout.js out of browser testing and faking out the window
I'm trying to write unit tests for my view models, the view models have a heavy dependency on knockout.js. I'm also using js.net to run the qUnit tests from the microsoft test runner in visual studio. ...
2
votes
1answer
24 views
qunit test that styles get applied to target elements
I'm doing my first set of javascript unit tests against a plugin I'm writing.
It's based on a jquery ui widget and looks like this
$.widget("my.carousel", {
// Set up the widget
_create: ...
2
votes
1answer
50 views
Using Qunit to test a returned function
I'm currently learning unit testing and how to use QUnit and thought that the best way to do this would be using a small jQuery plugin that I've written.
Within the plugin I've extended the easing ...
2
votes
1answer
83 views
How to test against a DOM object in qUnit?
I'm testing some JavaScript with qUnit. In one object I pass a DOM element, and some methods will change some properties of the element.
How can I mock a DOM object in qUnit?
I'd like to use a ...
2
votes
1answer
115 views
How can I trigger the Twitter intents events programmatically?
The Facebook JS SDK has the equivalent of jQuery's trigger() function, FB.Event.fire
that allows you to trigger the handlers you attach for particular events. Its helpful for my unit tests in QUnit. ...
2
votes
2answers
111 views
How to create makefile to compile JavaScripts?
How can I (and what tools do I need to) create a makefile that:
Combine all JavaScripts '/js/*.js' (in a manual order - possibly with cat)
Verify that combined script works against unit tests (which ...
2
votes
1answer
61 views
what does the 'Q' in QUnit stand for?
I'm currently brainstorming for possible names on some JavaScript modules I'm working on, and was looking for ideas. I came across QUnit and was wondering what the 'Q' stands for, since the info ...
2
votes
1answer
44 views
qunit with jsmock test failing and I don't know why :)
There is a test http://jsfiddle.net/misza222/g7Cur/ and it is failing. Does anyone know why?
2
votes
2answers
568 views
knockoutjs unit testing with qunit
I'm new to relatively 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 ...
2
votes
1answer
147 views
Why does this QUnit RegExp test fail?
I'm messing around with QUnit and there is one thing I stumbled upon.
I tried this simple test on Chrome:
deepEqual(new RegExp(), /(?:)/);
I assumed it would pass, since new RegExp() returns ...
2
votes
2answers
387 views
Problem of qUnit test order
I have build a web site with jQuery and lots of ajax request (json format).
I would like to make some unit test to verify request on server side.
As I used jQuery, I use qUnit, but I have a problem of ...
2
votes
2answers
613 views
How can I trigger a native Javascript event from a QUnit test?
I'm working on a Javascript library that does not depend on jQuery, though I have jQuery and QUnit available in my tests. In the library, I attach an event to an element the way jQuery does:
if ...
2
votes
1answer
139 views
How to write unit test to assert the value of a jQuery element
I am using jQuery 1.4.1 and here is a simple code.
buildCol1: function() {
var col = $('<select />', {className: 'col1' }).append($('<option />'));
return $('<td ...
2
votes
2answers
202 views
How to extract QUnit results from the document
When QUnit adds the test result details to your HTML document, it thoughtfully wraps the numbers of tests taken, passed and failed inside span elements, each with its own class, to let you recover ...
2
votes
1answer
1k views
qUnit Teardown method
Is it possible to have teardown methods that run after every test in qUnit? If not, are there any plugins around that will do this?
2
votes
2answers
1k views
QUnit Unit Testing: Test Mouse Click
I have the following HTML code:
<div id="main">
<form Id="search-form" action="/ViewRecord/AllRecord" method="post">
<div>
<fieldset>
...
2
votes
2answers
265 views
Testing checkbox click
I have started testing my UI using qUnit, so I need to simulate some user interaction. Is it possible to "simulate" a user clicking a checkbox using javascript ?