Questions tagged [chutzpah]

Chutzpah is an open source JavaScript test runner which helps you integrate JavaScript unit testing into your website. It enables you to run JavaScript unit tests from the command line and from inside of Visual Studio. It also supports running in the TeamCity continuous integration server. Chutzpah supports the QUnit, Jasmine and Mocha testing frameworks. Chutzpah uses the PhantomJS headless browser to run your tests.

Chutzpah is an open source JavaScript test runner which helps you integrate JavaScript unit testing into your website. It enables you to run JavaScript unit tests from the command line and from inside of Visual Studio. It also supports running in the TeamCity continuous integration server.

Chutzpah supports the QUnit, Jasmine and Mocha testing frameworks. Chutzpah uses the PhantomJS headless browser to run your tests.

Resources

262 questions
0
votes
1 answer

qUnit isn't running setup code like a browser would?

In stuff.js: function init() { return "works"; // just here to ensure we can access this file from the test } window.MyNamespace = {}; In my test JS file: /// test("foo…
Patrick Szalapski
  • 8,738
  • 11
  • 67
  • 129
0
votes
0 answers

Chutzpah in Visual Studio 2012 Not Scanning HTML Test Harnesses

Using Chutzpah with Visual Studio 2012. I have an HTML test harness with tests inline. But Chutzpah doesn't seem to "scan" these files so that they appear in Test Explorer. Here's the body of my HTML. I am including the qunit.js files. But the test…
brentlightsey
  • 2,026
  • 1
  • 19
  • 23
-1
votes
1 answer

Chutzpah or Jasmine does not let me run tests which use prototype

Chutzpah and Jasmine runs fine in my solution in Visual Studio, for my javascript tests. I have an issue, and I think it's chutzpah but I'm not 100% certain (it could be Jasmine). I now need to test my extension methods, which contains code similar…
MyDaftQuestions
  • 4,487
  • 17
  • 63
  • 120
-1
votes
1 answer

How to write unit test in Jasmine to nested function

My JS file: outer.fucntionMethod = funtion () { inner.functionMethod = (function (intput) { var temp = intput.spilt("inner").join("funtionMethod"); return temp; }); } I need to write unit test this method: "inner.functionMethod()"
-2
votes
1 answer

How to run a chutzpah test on a .ts file

I have been working on TypeScript for a while now, and now I am in the phase where I have written all the modules in TypesScript , I am now working on how to test the TypesScript files, I am using Chutzpah rightnow, can anyone tell me the precise…
Akshay Sharma
  • 33
  • 1
  • 6
-2
votes
1 answer

How to install Chutzpah Test Adapter for the Test Explorer - version 3.2.6 in visual studio 2013

I tried searching all over the internet, but I couldn't find how to install Chutzpah Test Adapter for the Test Explorer version 3.2.6 for visual studio 2013. In Visual studio Extensions and Updates settings, I am able to see the latest version…
1 2 3
17
18