Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
261 views

Considerations before doing test driven development

I'm starting to use test driven development for JavaScript, but I would like to start using it in my different projects. I would like to know what are the typical mistakes and how to avoid them? ...
2
votes
2answers
702 views

Javascript JsTestDriver Jasmine & Jasmine-jquery

I have lots of Jasmine unit tests, that are running unit tests for Javascripts code. They are using Jasmine-jquery plugin to do DOM manipulation. they use loadFixture, to load fixtures of HTML I ...
2
votes
2answers
226 views

How to test angular controller with JsTestDriver?

I have the following code: function TestStats($xhr) { $xhr( 'GET', '/test-dashboard/get-projects.json', angular.bind(this, function(code, response) { ...
2
votes
1answer
219 views

jsTestDriver + Nant = test directory issue

I am working on a project where the Javascript is becoming more complex, and needs to be tested as part of our automated build. Now I have got a project structure like shown below: - root |- ...
2
votes
1answer
206 views

Javascript Unit Testing with Javascript-Test-Driver

Recently a new framework for Javascript unit testing has been released. HERE Can anyone points me to some sample examples which I can look at to? This seems to be an excellent framework; considering ...
1
vote
1answer
96 views

Where do I put HTML fixtures when I'm using JsTestDriver?

I'm having a hard time getting JSTD to load a fixture HTML file. My directory structure is: localhost/JsTestDriver.conf localhost/JsTestDriver.jar localhost/js/App.js localhost/js/App.test.js ...
1
vote
3answers
59 views

Trying to run JsTestDriver in Visual Studio 2010, getting an error

I was following some online guides to setting up JSTestDriver in Visual Studio, I can get the server to launch, but the test cannot find the server which is very odd. Here is the error message: ...
1
vote
1answer
48 views

Unit testing self-invoking functions

I have a self-invoking function in a JavaScript file. Something like this: com.renderer = (function(){ render(data){ } .....other functions return{ init : function(){ ...
1
vote
3answers
797 views

How to test jquery and ajax calls using JsTestDriver?

I have a dynamic page built with jQuery. Html pieces are loaded from mustache templates. These templates are downloaded from a url, and I would like to unit test the overall html construction : The ...
1
vote
1answer
351 views

Not getting a response from Mockjax with JsTestDriver

I'm attempting to use mockjax to mock my jQuery Ajax calls; however, I am not able to find any good, working examples of how to effectively test the responses. The following code is a simple wrapper ...
1
vote
2answers
242 views

Testing manually fired events in JsTestDriver

What is the best way to test for event handling in objects? I can't seem to figure this one out. I have an object that sets up a few event listeners and when it observes these events being fired it ...
1
vote
1answer
91 views

Permission Denied When Trying to use --browser in JSTestDriver on OSX 10.6

I started playing around with JSTestDriver tonight and got it to work without too many issues. I attempt use the --browser switch to have it autocapture chrome or firefox on my local system here; ...
1
vote
2answers
210 views

JsTestDriver and legacy javascript. To convert or not?

I inherited a legacy JavaScript library simply written as a list of functions as follow: function checkSubtree(targetList, objId) { ... } function checkRootSubtree(targetList, rootLength, ...
1
vote
2answers
258 views

Installing an Eclipse Plugin that you've compiled from Source?

I've successfully compiled js-test-driver plugin from source (http://js-test-driver.googlecode.com/svn/tags/1.2) and I am attempting to install it on Eclipse 3.5.1 Galileo. I understand how to ...
0
votes
0answers
43 views

Not able to execute the jstestdriver from TeamCity

I am getting the below error while executing the below command in MSBuild by TeamCity. Error : C:\Program Files ...
0
votes
0answers
69 views

ajaxresponse getting failed in jstestdriver

I am using AsyncTestCase for AjaxResponse while running my testcase getting failed and i am not sure about the answer how will i get is there is anything wrong with my code, here is my tescase: var ...
0
votes
1answer
63 views

Correct syntax for JS Test Driver “assertException”?

I'm trying to figure out how to correctly use JS Test Driver's assertException method. From google's documentation it should be: assertException([msg], callback, error). However, no matter what I do, ...
0
votes
0answers
24 views

Access test status from tearDown in js-test-driver

I would like to create an automatic teardown task for JsMocha mocks that js-test-driver would be sure to call after every test and report the test as failed if any of the expectations aren't met. My ...
0
votes
1answer
46 views

How to handle Confirm Box within JsTestDriver

I am using JsTestDriver for unit tests in JS. One section of my code uses a confirm box to allow users to confirm or cancel a decision. How to I test both the confirm and cancel selections of this ...
0
votes
2answers
133 views

jsTestDriver set up with Visual Studio 2010

Am following this tutorial to set up jsTestDriver with Visual Studio 2010: http://slmoloch.blogspot.com/2009/08/how-to-run-jstestdriver-with-visual_02.html I manage to start the jsTestDriver server ...
0
votes
0answers
42 views

Testing jquery thats depend on version with Js-test.driver

im new to js-test-driver and have some questions how can i test this jquery event? ex verify that the event runs Search() if letter > 9 $("#search").live('keydown', function () { //start search ...
0
votes
0answers
105 views

“Label not found” error in code coverage with jstestdriver

I have some javascript code with do while outer loop and switch inner loop, inner switch loop contains break outerloop. below is simplified version of code. While generating code coverage with ...
0
votes
0answers
64 views

How to mock $xhr with Jack?

I have a function like: function Aoeu($xhr) { $xhr('GET', '/url', function(code, response) {}); }; How do I create with Jack a $xhr mock that's to be passed into Aoeu()? The following says ...
0
votes
1answer
633 views

ReferenceError: CoffeeScript + JsTestDriver + Qunit

Currently I'm looking into TDD with CoffeeScript and JsTestDriver however I'm stuck on a ReferenceError thrown by JsTestDriver. Some info: Using the IntelliJ JsTestDriver plugin Testing via Chrome ...
0
votes
1answer
193 views

Why would false would not be defined in jasmine?

I'm using jasmine in conjunction to Js-test-driver using an adapter to connect the both. I've got this following test case: describe("Undefined false", function(){ beforeEach(function(){ ...
0
votes
2answers
199 views

Getting lockups/hangs when using jsTestDriver with Intellij idea 9 (doesn't work at all on 10)

Is anyone using jsTestDriver with IntelliJ? What version are you using? Is it working well? I am using IntelliJ right off the website 9.0.4 with jsTestRunner 1.2.2 and I repeatedly get hangs when I ...
0
votes
1answer
665 views

Compiling JS-Test-Driver Plugin and Installing it on Eclipse 3.5.1 Galileo?

I downloaded the source of the js-test-driver from: http://js-test-driver.googlecode.com/svn/tags/1.2 It compiles just fine, but one of the unit tests fails: [junit] Tests run: 1, Failures: 1, ...
0
votes
3answers
709 views

JsTestDriver easy appending of elements to the body via :DOC syntax?

I'm using js-test-driver to test my Javascript code on several browsers: TestCase("DropDownValueReplacerTestCase", { setUp:function() { console.log("BEGIN: setUp"); /*:DOC += ...