Tagged Questions

Dojo Objective Harness is a unit testing framework developed by the Dojo Toolkit Community.

learn more… | top users | synonyms

11
votes
1answer
432 views

How to run Dojo DOH unit-tests through Jenkins?

Has anyone tried integrating Dojo DOH unit-tests with Jenkins? I'd like to do the following, but don't want to reinvent it if this has already been done. So, I'm thinking: Kick off the DOH-tests ...
4
votes
3answers
821 views

DOH command-line testing of JavaScript functions outside of the Dojo root

I'm trying to run DOH from dojo-1.3.2 to test simple Javascript functions from command-line. However, I can't seem to get anything to run and the net seems to be devoid of DOH command-line ...
3
votes
2answers
443 views

How to test non-dojo javascript code with doh?

doh is the dojo unit-testing framework. I am trying to use doh to test a non-dojo javascript code, but i am facing the problem that doh seems intrusive and oblige me to use dojo.provide() in the ...
3
votes
2answers
577 views

How to locally test cross-domain builds?

Using the dojo toolkit, what is the proper way of locally testing code that will be executed as cross-domain, without making the actual build? As it appears, there are three possible options (each, ...
3
votes
2answers
630 views

What happened to Dojo DOH?

The Dojo Toolkit used to come with a testing facility called "Doh". It was in the /utils directory. Now when you download dojo-release-1.3.2 the /utils directory is nowhere to be found. Is Doh dead ...
2
votes
1answer
87 views

Unit test in dojo

I'm starting with dojo. Coming from GWT and Backbone, I've worked with junit and jasmine to test my application. After taking a lock on dojo DOH testing framework, I wonder if its worth to use it or ...
1
vote
0answers
82 views

doh robot unavailable after running previous instance

I grabbed the latest dojo code to play around with the DOH robot. I have installed two exact copies of the dojo/dijit/dojox/util package: one on the root level of my server and one under /js/. ...
0
votes
0answers
24 views

Dojo DOH, unit tests with robot actions wont run

When try to run dijit tests from 1.7 version, popup window shows up and test will not progress any further. Popup says: DOH has detected that the current web page is attempting to access DOH, but ...
0
votes
0answers
54 views

Dojo DOH unit testing

I am a novice to Dojo, and I wrote a few unit tests following the normal convention and structure. I also have written tests for widgets. I tried to run the tests using the same command I use for the ...
0
votes
0answers
15 views

How can i execute the DOH test synchronously?

Can anybody help me in finding a solution for this problem. I have (assume) 3 doh functions 1st one is async and the rest are synchronous. I have to make async function to be called first and the ...
0
votes
1answer
65 views

Running Dojo DOH tests within mstest

I'm required to run dojo DOH tests within a MSTest framework. So far I haven't found any useful links except one from Stephen Walter. A requirement is to avoid loading the test into jscript; for ...
0
votes
0answers
110 views

doh.robot fails to access https page

I am testing a web app using doh.robotx. My login page is accessed via https. When I start the robot script, I get the following error: However, I am able to navigate to my webpage just fine. ...
0
votes
2answers
314 views

Automation of DOH Robot tests interrumped by Pop-up message

In order to automate DOH tests during our build process, I use Selenium RC to launch different browsers (IE and Firefox) on a server placed on a different domain than the build machine. Each browser ...
0
votes
1answer
238 views

Is it possible to test a sequence of asynchronous function calls with D.O.H

I am trying to use doh.Deferred to write a test that will check the following sequence of events: login with user A (asynchronous) log out (synchronous) login with user A (asynchronous) The return ...