New Post: TypeScript dependencies
another option is to add new key word like "/// <reference " such as "/// <include " to specify additional js file to be included in generated file! If we can't specify additional js files, we...
View ArticleCommented Issue: Fails to parse file with open-ended function argument [86]
If I run a test containing a function with an open-ended function Chutzpah fails to parse it and does not run.function sum(...numbers: number[]) {});easy workaround : place that function in another...
View ArticleNew Post: TypeScript dependencies
adding references to js files within your ts works fine: /// <reference path="../libs/jquery-1.7.2.js" /> /// <reference path="../libs/jasmine.d.ts"/> declare var $; describe("test browser...
View ArticleNew Post: Another shot at code coverage - via JSCover
Sorry for updating... everything should be working now with Blanket. Should I prepare a pull request?
View ArticleNew Post: Another shot at code coverage - via JSCover
Sorry for not updating, that is... :-)
View ArticleNew Post: Javascript Engine bug
There seems to be a bug in the javascript engine that this runner uses in Visual Studio. Consider the following 2 scenarios. Both work as described in IE and Chrome. var o = {};...
View ArticleNew Post: TestingMode in chutzpah.json
That is a scenario I have been thinking about. I think chutzpah.json would make this possible. We would need to change how the container discoverer works but that shouldn't be too hard.
View ArticleNew Post: How can I load data using $.get during tests?
Chutzpah does set that setting to true (look at http://chutzpah.codeplex.com/SourceControl/changeset/view/d500c754e7c0#Chutzpah/JSRunners/chutzpahRunner.js).
View ArticleCommented Issue: Fails to parse file with open-ended function argument [86]
If I run a test containing a function with an open-ended function Chutzpah fails to parse it and does not run.function sum(...numbers: number[]) {});easy workaround : place that function in another...
View ArticleClosed Issue: Fails to parse file with open-ended function argument [86]
If I run a test containing a function with an open-ended function Chutzpah fails to parse it and does not run.function sum(...numbers: number[]) {});easy workaround : place that function in another...
View ArticleNew Post: Javascript Engine bug
This seems to be an issue with the underlying javascript engine in the webkit library that PhantomJs is using. I think you should file a bug there: http://code.google.com/p/phantomjs/issues/list
View ArticleNew Post: Another shot at code coverage - via JSCover
Once you merge with the latest version pull request away!
View ArticleCommented Feature: MSBuild Tasks [16]
Adding MSBuild tasks for Chutzpah would open the way for integration with other CI platforms such as CruiseControl.net or TFS Build.Comments: Let me know what you find out. I had heard from someone on...
View ArticleCommented Issue: Form submission causes test run to hang and eventually...
We have a test suite which has recently grown to just over 200 tests. Recently I have started experiencing an issue on our build server whereby the test run appears to hang at around 150 tests and...
View ArticleNew Post: Another shot at code coverage - via JSCover
I've been lurking around this discussion for a while, and it's really exciting to see it come to fruition. Awesome work! The JSCoverage implementation I started was never quite right, and was kinda...
View ArticleCreated Issue: FileSearchLimit=300 cancels test run with more than 300 tests...
This line--------// Default of how many files to open during test file discovery public const int DefaultFileSeachLimit = 300;--------When we ran Chutzpah as part of the build on TFS12, it stopped and...
View ArticleEdited Issue: FileSearchLimit=300 cancels test run with more than 300 tests [89]
This line```// Default of how many files to open during test file discovery public const int DefaultFileSeachLimit = 300;```When we ran Chutzpah as part of the build on TFS12, it stopped and cancelled...
View ArticleNew Post: Debugging Tests?
Am I missing something or is it not possible to debug tests using the Visual Studio 2012 Test Explorer addin? If not, any plans to enable this?
View ArticleNew Post: Debugging Tests?
It is not possible to debug from Visual Studio. I had looked into the idea of creating a debugger plugin which interacts with the webkit debugger api but its no small task. I would like to eventually...
View ArticleNew Post: TypeScript dependencies
Yes you can add .js as references but look at the errors log and it will be full or errors typescript has reported because it thinks it should compile the .js as as .ts. Anybody got any ideas on how to...
View Article