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).
0
votes
0answers
16 views
“Can't verify CSRF token authenticity” when testing emberjs/rails/devise app using qunit
Warning I'm a newbie.
I have a emberjs/rails application using devise for user authentication. I am building integration tests using qunit. I manually log into the app before I run tests. GET ...
1
vote
0answers
21 views
Why the Qunit counter in this test never reaches the target value?
I'm sitting on a Qunit test and having trouble to follow what's happening. The test if from jQuery Mobile's listview.filter extension.
I'm clueless as to how the variable _refreshCornersCount ever ...
1
vote
1answer
38 views
Qunit test for ViewModel
I have a ViewModel defined as below:
(function(ko, myApp) {
myApp.HomeViewModel = function () {
this.message = ko.observable("Helloy.....");
this.toolBarIsVisible = ko.observable(true);
...
0
votes
1answer
23 views
Unit testing javascript function with Qunit
It is possible to create a unit test that can test ui aspects? here is an example:
addMessage = function (type, message) {
//success, error, info, block(alert)
...
0
votes
1answer
46 views
Testing javascript function with qunit
I declare a ViewModel within a javascript file as per below.
(function(root) {
var ko = root.ko;
var vm = {
modelType: ko.observable(),
message : ko.observable(),
...
1
vote
0answers
22 views
Sinon mocked object doesn't contain original object's functions at top level
So I'm trying to test that this function calls ctrl.set with those specified arguments.
didInsertElement: function() {
$(".poptop").popover({placement: 'top',trigger: 'hover'});
var ...
0
votes
1answer
25 views
QUnit setup() called for each test before teardown
I'm using QUnit in conjunction with require.js for unit-testing a backbone.js application. All of the tests are asynchronous, using the asyncTest method.
I'm using setup and teardown to build and ...
1
vote
0answers
26 views
Integrate Qunit PhantomJS Maven AMDJS
I tried to setup js unit testing, using qunit, phantomjs, maven. The reference I have used for this was: ...
2
votes
1answer
50 views
Qunit error: assertion outside test context
I've searched all over and it appears this error is due to not using asyncTest properly. However, per the documentation, it appears that I am doing it correctly. I'm guessing I'm missing a small ...
1
vote
0answers
36 views
real examples using qunit and jstestrunner?
I'm trying to set up some javascript unit tests using jstestrunner and qunit, in Maven. I've worked on many Java unit tests, including setting up the infrastructure, but I'm new at doing this for ...
0
votes
0answers
14 views
qUnit: Twitter Bootstrap modals writing outside of qunit-fixture
I'm having a difficult time writing qUnit tests for a project that uses Twitter's Bootstrap. When a modal is spawned it is putting the overlay outside of the qunit-fixture, so when the next test is ...
0
votes
1answer
22 views
Writing JS tests for Django apps
I have some django apps for which I have some templates. I have some inline JS in the template and a lot of DOM manipulations.
I would like to test the JS parts. I don't particularly want to use ...
0
votes
1answer
20 views
Writing python tests like Qunitjs
I'm trying to find a similar approach to Qunit's assertions in Python. When using assertions in Qunit, the message parameter is used in a very descriptive fashion.
test( "test", function() {
ok( ...
0
votes
0answers
25 views
javascript chutzpah testing a part of function. Writing test case inside a function
Is it possible to write my test cases to be driven inside a module of a function or a part of code inside a function?
I am trying to develop a javascript plugin and here is part of the code.
...
9
votes
2answers
143 views
Qunit test alternates between pass and fail on page refresh
I have a two tests that are causing side effects with each other. I understand why as I am replacing a jQuery built-in function that is being called internally in the second test. However what I ...
0
votes
1answer
34 views
How to handle inner functions in qunit
I just started with Qunit, and don't know much about it.
The problem I'm having is that I have written this function in my code and want to test this using Qunit.
<script>
function ...
0
votes
1answer
57 views
using Code coverage using QUnit and Teamcity
Actually I am in the process to run my javascript code on teamcity using QUnit+ phantomjs.
(using this link as reference:http://thomasardal.com/running-qunit-tests-on-teamcity/)
And at least the ...
1
vote
2answers
55 views
Test fails then succeeds
Click run a couple of times - these tests alternate between pass and fail.
http://jsfiddle.net/samselikoff/hhk6u/3/
Both tests require companies, but I don't know how to isolate the events. Any ...
1
vote
1answer
36 views
Handling several event listeners
Update: here's a fiddle of my problem. The tests pass once, and fail the next time:
http://jsfiddle.net/samselikoff/hhk6u/4/
The problem is departments has events.on("userSet:company"), so both ...
0
votes
1answer
53 views
JSHint error when running Grunt with QUnit
I am running a Grunt build with JSHint and QUnit.
On my first test run I get the following:
Running "jshint:files" (jshint) task
Linting test/libs/qunit-1.11.0.js...ERROR
[L661:C22] W069: ['throws'] ...
0
votes
1answer
53 views
Manage global Backbone events while writing Qunit unit tests
I am writing unit tests for my Backbone app. Certain tests trigger events, which is causing interference among the different tests.
Here are my tests
test('user setting a company should update the ...
0
votes
1answer
49 views
How do I mock a 'timeout' or 'failure' response using Sinon / Qunit?
I've had no problems sorting out mocking the success condition, but cannot seem to fathom how to mock the failure / timeout conditions when using Sinon and Qunit to test and ajax function:
My set up ...
0
votes
1answer
31 views
Catching errors on plugin initialization wth QUnit
I'm using the following format for creating plugins.
$(function () {
function PluginName() {
/* some more code here */
}
$.extend(PluginName.prototype, {
_attachPlugin: function ...
1
vote
1answer
62 views
Access RequireJS path configuration
I notice in the documentation there is a way to pass custom configuration into a module:
requirejs.config({
baseUrl: './js',
paths: {
jquery: 'libs/jquery-1.9.1',
jqueryui: ...
1
vote
1answer
119 views
How to load a public function using QUnit and TypeScript
I am using QUnit to test my typescript code and everything is fine when I run a simple example like this: http://thomasardal.com/testing-typescript-with-typescript-using-qunit-and-chutzpah/
But my ...
1
vote
1answer
67 views
QUnit test returning “TypeError: undefined is not a function”
I have some sample code from Glen Johnson's book Programming in HTML5 with JavaScript and CSS3.
My 'app code' is as follows:
// Demo of how implementing inheritance works
var Vehicle = (function () ...
2
votes
2answers
78 views
QUnit fails tests inconsistently/alternately
I have a simplified QUnit test which consists of 2 simple tests that fails randomly/alternately for no good reason (They are both atomic, meaning that one test doesn't change anything of the other ...
4
votes
1answer
142 views
Javascript unit testing with V8
Currently, I am using PhantomJS for running Javascript unit tests in QUnit and Sinon framework on our build server.
But, PhantomJS uses JavaScriptCore with JIT compiler as its Javascript engine. ...
0
votes
1answer
56 views
How to spy this code
I have below code in one of my controller classes:
initialize:function(){
var myView = new MyViewClass({ vent : this.getParent().getVent(); });
..... other code of the initialize method
},
...
0
votes
0answers
29 views
grunt qunit in conjunction with grunt server
While running grunt server for developing, How can I separately use tehe grunt qunit task to run the tests.
While trying to pass ["test/**/*.html"] to the all property, but that fails to run and ...
3
votes
0answers
132 views
QUnit and PhantomJS testing of AJAX requests only works through proxy
I'm attempting to use grunt-contrib-qunit to run a pre-existing suite of qunit tests (testing parsing of ajax request results) in headless mode with Phantom on Windows 8.
The tests complete fine in ...
2
votes
0answers
71 views
QUnit and Sinon.js under continous integration
I am using QUnit+Sinon.js which works well natively.
The problem was occured when I tried to build it into a continous integration process.
I am using js-test-driver framework to be able to run it in ...
0
votes
2answers
44 views
How do I make QUnit block until a module is complete?
I'm trying to use QUnit to test a bunch of javascript. My code looks something like this:
module("A");
doExpensiveSetupForModuleA();
asyncTest("A.1", testA1);
asyncTest("A.2", testA3);
...
1
vote
0answers
81 views
Proxy configuration for PhantomJS through grunt (qunit)
I'm attempting to run integration tests via grunt-contrib-qunit. I've set the --proxy flag via the options object, every ajax request returns a 404 (not found) error.
Gruntfile.js
...
7
votes
1answer
251 views
Why does adding a property to an object literal's prototype change its “type”?
So I have a simple isPlainObject method that I use to test for JavaScript object literals:
var isPlainObject = function (obj) {
return typeof obj === "object" && {}.toString.call(obj) === ...
3
votes
1answer
70 views
Obtaining $httpBackend in QUnit tests
I am writing QUnit tests for an Angular controller. In the setup function of module, I have written the following statements to get an object of $httpBackend:
var injector = ...
1
vote
1answer
107 views
Unit testing for jQuery widget in Qunit
I have build a jQuery widget for Footer bar. This bar contain some click-able event. I want to write unit test to verify the functionality. For testing I am using qunit. I want to create test unit for ...
5
votes
0answers
100 views
Unknown $rootElementProvider: Qunit + angularjs integration
When I try to inject $location service in unit test (qunit) I get error:
Unknown $rootElementProvider <- $rootElement <- $location
Other things without $location service dependency are ...
1
vote
1answer
76 views
jQuery css left, top, z-index
I have a few tests that test if the style params are set properly. For some reason, some tests fail in Chrome. Here are the tests. element is a jQuery Object by the way.
...
2
votes
0answers
37 views
Specify QUnit module when run with Grunt
I'm using Grunt, PhantomJS, and the "watch" plugin to run my QUnit tests while I develop (separate from CI). I'd like to be able to focus on a specific QUnit module while I'm working on the code that ...
0
votes
1answer
86 views
QUnit Test - Knockout observableArray not evaluating properly
I am having a strange problem where this test fails off and on for no apparent reason and I am not sure what is going on. Sometimes I will refresh the test and it will pass. Other times, without ...
1
vote
1answer
68 views
Mocking Google Maps in RequireJS for running tests offline
I am using the async plugin from https://github.com/millermedeiros/requirejs-plugins to load the Google Maps API:
define(['async!//maps.google.com/maps/api/js?libraries=places&sensor=false'], ...
3
votes
2answers
534 views
How can I use HTML fixtures with Karma test runner using Qunit?
I'm playing with Karma test runner (http://karma-runner.github.io/0.8/index.html) using qunit (http://qunitjs.com). I succesfully created and ran simple tests (100% JavaScript), but now I'm trying to ...
2
votes
1answer
82 views
Uncaught exception with qunit and jquery
I'm facing an issue while trying to get javascript unit tests to work at the command line using qunit.
Here's some sample code to reproduce the error:
file util.js:
function abc() {
return ...
0
votes
1answer
102 views
Qunit Assert mockajax response
To test the Jquery Ajax reponse, I am using mock ajax with Qunit. I have to assert the Mock Ajax reponse, but in my test case,Assert statements are running first and then i am getting response from ...
0
votes
0answers
30 views
QUnit–chain asynchronous tests
I would like to write tests that work as follows:
start an asynchronous Test
after this test is done, start the next asynchronous Test
do that for an arbitrary number of tests
Setting ...
1
vote
1answer
60 views
Test for visible in QUnit test of JQueryUI widget
This may be obvious to everyone else but I didn't find it by searching, so posting both the question and one possible answer here.
Background:
Custom JQuery UI widget using widget factory
In the ...
0
votes
1answer
33 views
Qunit Javascript client logging
we have small wrapper client logging framework to enable javascript client logging.We have exposed different function like LogError,LogWarn,LogInfo in Javascript.
...
0
votes
1answer
46 views
Qunit test cases for javascript logging
I am working on javascript client logging.I have function in JavaScript called WriteLog,which basically post a message to specified server URL and also write a message/exception to ...
2
votes
0answers
85 views
bbb qunit testing
I use backbone boilerplate for my project and have a problems with testing it. For tests I use QUnit. For example, test collection:
tests/index.html
<html>
<head>
...qunit.js, ...

