Does anyone have an mstest runner for Jasmine?
Given the rather extensive existing library of tests in MStest, I would like to add jasime for testign javascript and inbclude those new test in the MSTesting framework so that there is minimal disruption to current TDD patterns...
If anyone knows of an existing mstest runner for Jasmine, I would appreciate it. Would save time now having ot build one myself. Also opne to other MSTest integration ideas as well, just in case I'm chasing the wrong solution...
Our current continuos integration/source control solution is TFS 2开发者_开发百科010.
Development is with VS 2010 and the resharper plugin.
Chutzpah runs Jasmine or QUnit tests in the headless PhantomJS browser from the command line. I'm currently working on publishing it's output to TFS 2010 called from a PSake build script. My hope is that with some XSLT or other magic, I can get the JS tests to fail the build if one doesn't pass.
On my blog I showed how to run Jasmine tests as part of a TFS 2010 build, in a way that fails the build when the Jasmine tests fail. This also works when running unit tests from within Visual Studio.
The solution mentioned in the Matt Perdeck's article is awesome and works as expected. The reason you are getting IOException is because of chutzpah version. You need to use chutzpah.console.exe /silent to get it working.
精彩评论