Tagged Questions

0
votes
3answers
109 views

How to unit test a jQuery selector?

Hi all: Just a quick question... I currently have the following jQuery code with a selector in it. var ID = "idControl" function doesTreeViewExist() { if($('#' + ID).length = …
10
votes
10answers
869 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 …
1
vote
2answers
99 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 he …
1
vote
1answer
22 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 …
0
votes
0answers
25 views

QUnitAdaptor for JSTestDriver passing failed test!

Hi all: I have a very strange case here when using QUnitAdaptor to test my QUnit tests. It actually passed a test which is supposed to fail: test("very simple test", function() …
0
votes
0answers
57 views

Automating Javascript unit tests in .Net

Hi all: I wish to automate my Javascript unit tests and have MSBuild in Hudson to build it. The problem is that I'm using QUnit to test my Javascripts (there's a bit of jQuery to …
1
vote
2answers
157 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
4answers
138 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 applica …
1
vote
1answer
286 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) { . …
1
vote
2answers
159 views

Can you create ‘Dynamic’ tests with MS Test Suite?

I'm using QUnit to test some JQuery, and I've got Watin to load up the test page and parse out the test results, but I'm wondering if there's a way to dynamically generate the test …
1
vote
2answers
188 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 pu …
0
votes
0answers
92 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
0
votes
3answers
109 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 ?