Tagged Questions
0
votes
2answers
51 views
Validation doesn't work after upgrade JQuery
Sorry, I don't have any work experience on the browser before,but we encounter a Unit test failed after we upgrade JQuery 1.7.1 to 1.8.3. I have to fix this failure. We have such html page.
...
1
vote
1answer
33 views
setup for headless unit testing using requirejs
This seems to be a kind of Search for the Holy Grail, but I'm looking for a setup for a JavaScript unit testing environment. The requirements are:
testing Requirejs AMD modules
isolate each module ...
0
votes
1answer
24 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
0answers
23 views
replace internal module dependency with fake implementation during unit testing
In my Jasmine unit test I want to replace the internal dependency with a fake implementation. I tried to follow this article but could not get it right:
...
6
votes
2answers
90 views
Fake the Google Maps objects structure with JavaScript for Unit Tests
The Google Maps API objects are used like this: google.maps."Constructor" it seems.
I want to fake the calls listed below...
//var map = new google.maps.Map(value);
//var fireStationBound = new ...
2
votes
1answer
52 views
How do I run javascript unit tests in maven, with no need for running a browser or server?
I work with developing web stuff that contains javascript that to some extent holds more logic than just animations and moving values around. I would like to implement some unit tests for that kind of ...
0
votes
0answers
25 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 ...
-1
votes
1answer
49 views
Unit Testing Chrome Extensions?
What is the best way to unit test a Google Chrome extension?
I need to unit test various JavaScript functions and content-scripts on the websites they were designed for, as well as automate user ...
0
votes
1answer
40 views
What is the least-dirty way to expose private javascript vars for testing?
I've got a state machine in JS which (to simplify) has an initial state that is only set before anything happens.
define(function() {
var state = 'initial',
exports = {};
exports.getState ...
2
votes
2answers
59 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 ...
0
votes
2answers
50 views
AngularJS: test that an external script is effectively loaded
I'm working with an external script (from http://segment.io) and I'm writting an AngularJS module to interact with it.
I am wondering how can I effectively test that their script is well loaded ...
3
votes
1answer
82 views
Getting requirejs to work with Jasmine
I first want to say that I am new to RequireJS and even newer to Jasmine.
I am having some issues with the SpecRunner and require JS. I have been following the tutorials of Uzi Kilon and Ben Nadel ...
1
vote
2answers
71 views
What do jasmine runs and waitsFor actually do?
I use jasmine runs and wait to test asynchronous operations. Everything works fine but I'm not quite sure what goes on behind the scenes.
The jasmine documentation states the following example to ...
0
votes
1answer
24 views
How to check the value is in object with Chai?
Is it possible to test the value is contained within certain array with Chai assertion library?
Example:
var myObject = {
a : 1,
b : 2,
c : 3
};
var myValue = 2;
I need to do something ...
1
vote
1answer
37 views
Call intern asyn callback more than once
Is it possible to specify the circumstances the asyn callback should be called in intern? Let's say we have a test testing a method which performs several XHR Requests in a row. Specificaly, I'm ...
0
votes
2answers
39 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);
...
2
votes
1answer
200 views
Testing custom JavaScript (not Node module) with Intern
Is it possible to create and run test suites for custom client-side
JavaScript, not created as Node modules? How should the
configuration be altered then?
There is loader section in the Intern ...
0
votes
1answer
391 views
Error while testing route Karma in e2e tests
I'm trying to make some basic end to end tests (e2e) on a django/angularjs application using Karma and I'm getting a weird error.
Here is my test code:
# testacular-e2e.conf.js
describe('Log in ...
1
vote
0answers
88 views
Unit testing ExtJS code with Hudson and Siesta
I'm writing rich clients using ExtJS and Bryntum's Siesta testing framework. In justifying the purchase of a standard or premium commercial license, I'd like to find out what the Hudson continuous ...
1
vote
0answers
33 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 = ...
0
votes
1answer
102 views
How can I write jasmine test for angular controller and service like this?
I'm stuck for hours for this and it's because I'm new to Jasmine and Angularjs. Basically, I have this controller.
angular.module('toadlane.controllers', []).
controller('MainController', ...
0
votes
1answer
27 views
How to unit-test custom AJAX events
I have a javascript application where users can search for locations that are then displayed on a map. The search for locations is done with AJAX calls to a server application. There is one component ...
2
votes
1answer
129 views
How do you debug Jasmine tests with Resharper?
I can't find a way to debug (walk through) JavaScript code when running Jasmine tests with Resharper in Visual Studio 2012. I tried running tests with browser (Chrome) but the test runner closes the ...
2
votes
2answers
321 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
49 views
Any way to modify Jasmine spies based on arguments?
I have a function I'd like to test which calls an external API method twice, using different parameters. I'd like to mock this external API out with a Jasmine spy, and return different things based on ...
0
votes
0answers
29 views
Create unit test to Google Endpoints
I have some Google Endpoints and I want to create unit tests to it, and so on create the tests first to the next Endpoints. My endpoint is developed with Python.
What I'm trying to do now is test it ...
2
votes
1answer
72 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 ...
2
votes
2answers
293 views
Integrating Karma JavaScript testing with Maven
I'm adding Karma-based JS unit tests to Maven. I used the following configuration:
<plugin>
<groupId>com.kelveden</groupId>
...
1
vote
2answers
167 views
jasmine-fixtures - DOM changes never seen
I've got two RequireJS modules, one for fetching data from an external service, one in charge of passing a callback to the first module.
Here is the first very basic module:
define(["jquery"], ...
0
votes
1answer
44 views
How do I insert an object with Linq2IndexedDB
I'm experimenting with Linq2IndexedDB (v. 1.0.21) via unit tests (via Mocha), but I can't even make a simple insert work. What happens (when running under Google Chrome) is an internal exception is ...
0
votes
1answer
38 views
Testing a site in the browser
I need to test functionality of my web-site inside the browser automatically, i.e. I want to start web browser, open my site, issue some mouse clicks and keyboard input, check that HTML DOM is ...
0
votes
0answers
28 views
Travis-CI + (BrowserStack or other browser providers)?
Has anyone tried to connect BrowserStack browsers to Travis-CI vms?
0
votes
0answers
47 views
Problems with support JavaScript code in ASP.NET application [closed]
I support the MVC 3 .NET application. Applications contains a lot of inline JavaScript code on the different views. Frequently JavaScript code duplicated in the different views (reusing via ...
0
votes
1answer
99 views
Testing nested promises with Jasmine
This is working when I run the UI in the browser, but I'm always getting null for the 'd' in my validateAsync method that needs to call the done method to get it back to the save method. I can't ...
0
votes
1answer
117 views
How to spy window resize event using sinonjs and jquery?
I use backbonejs, requirejs to make my javascript app.
Also I use jasmine, sinonjs and jasmine-sinon plugin to test my application but there is a problem in using spy.
The spied method is called ...
2
votes
2answers
232 views
Testing Angular Controllers defined like angular.module('myApp').controller(
I am playing around with https://github.com/angular/angular-seed
A controller is defined in app/controllers.js like this
'use strict';
function MyCtrl1() {}
MyCtrl1.$inject = [];
this doesn't pass ...
1
vote
1answer
180 views
Jasmine angularjs - spying on a method that is called when controller is initialized
I am currently using Jasmine with Karma(Testacular) and Web Storm to write unit test. I am having trouble spying on a method that gets called immediately when the controller is initialized. Is it ...
0
votes
1answer
123 views
Migrating from asp.mvc application to node.js application with a focus on design [closed]
I am currently looking into alternative platforms to migrate an existing application onto, it started out as a prototype using asp.mvc but the majority of code is javascript with a simple asp mvc web ...
1
vote
0answers
48 views
Unit testing a click event using QUnit on another page
I'm getting started with unit testing in Javascript with QUnit. This works great:
test('clear test', function() {
ok(1 === 1, 'Clear test passed!');
});
but I want to check that something ...
0
votes
1answer
65 views
Mocha: undefined is not a function
I'm running a test suite in Mocha, and I'm finding that I often get "Fatal Error: undefined is not a function", with no stack trace. The problem is usually deep in my code dependencies, and not in the ...
0
votes
2answers
111 views
Jasmine's spy throwing is not a function error
I have an Angular JS application with a module and some services in it. My controller uses these services. In Jasmine test cases, I created a mock of a service using Jasmine's createSpy. Following is ...
0
votes
1answer
35 views
How can I test sequence of function calls by Sinon.js?
How can I test sequence of function calls by Sinon.js?
For example i have three (3) handlers in object, and want define sequence of handler calls. Is there any possibilities for this?
3
votes
2answers
419 views
How do I test angularjs directive to spy on the function call?
Code below executes but complains about element.popover not being invoked. I can't seem to figure out what the issue is.
Thanks for help in advance.
directive:
angular.module('directives', []).
...
1
vote
1answer
117 views
Can I get a page screenshot from within a mocha/phantomjs unit test?
I'm using grunt-mocha to run unit tests via phantomJS.
I know that phantomJS has a lot of useful functionality. Can I access that from within a mocha test?
I've looked in the obvious places such as ...
1
vote
2answers
43 views
Testing for a function that contains asynchronous code
With qUnit, I understand how to use asyncTest() if you have asynchronous code within your tests, but what if you have a function that contains asynchronous code?
In other words, the asynchronous ...
0
votes
0answers
98 views
How to simulate HTML5 Drag and Drop events in javascript?
As title, I'm trying to simulate an HTML5 drag and drop event in javascript.
I've looked into jquery.ui.simulate and also the simulate function here. Both seem to be able to be used to simluate drag ...
0
votes
1answer
50 views
Jasmine: Testing variable state before function is called
I am invoking a function that depends on the global window object having several variables defined before it can run successfully by injecting a 3rd party script. ie.
window.foo = 1;
function ...
0
votes
1answer
122 views
Jasmine tests failing over EmberJS needs API
I'm working on unit testing an EmberJS project with Jasmine but I'm having trouble with Ember's needs API.
When I try to run the jasmine tests, they fail on creating a controller instance, if the ...
2
votes
1answer
56 views
Diffing the DOM - how to write a unit test that checks that a script doesn't make any user-visible changes to elements on the page?
A Javascript plugin that I've been writing recently has various failsafes built in that tell either the whole plugin or parts of it to hide itself and die under circumstances where it can't function. ...
5
votes
1answer
94 views
Unit testing javascript code style
I'm getting started with javascript unit testing (with Jasmine).
I have experience in unit testing C# code. But given that javascript is a dynamic language, I find it very useful to exploit that, and ...
