Commented Unassigned: Packaging the testadapter dll with chutzpah [202]
The new 3.0.1 download does not include the testadapter.dll pre-build. However, using the new dlls with the old testadapter.dll does not work (tfs build stops finding the tests). Building the...
View ArticleCommented Unassigned: Exclude option is only used within chutzpah [201]
I use the CodeCoverageExcludes optiion to exclude handlebars, jquery and other 3rd party libraries from being instrumented (including them gives timeouts in many tests). However, that option is only...
View ArticleNew Post: How to update Jasmine from 1.3.1 to 2.0
It would certainly be nice just to support the latest version of Jasmine in Chutzpah, but I don't think it's realistic for most folks who've been using that framework. As the OP said, updating to use...
View ArticleNew Post: How to update Jasmine from 1.3.1 to 2.0
That said, according to semver a breaking change like hard switching to Jasmine 2.0 could go into Chutzpah 4.0. Just as long as people can hang on to the old version of Chuzpah if they want to.
View ArticleNew Post: How to update Jasmine from 1.3.1 to 2.0
Yea, I I may choose to ignore semver :) I would like to not be 4.0 but if people yell at me for feeling that way I can change.
View ArticleNew Post: Problem with test explorer not finding tests using requirejs and qunit
I have a strange problem whereby test explorer cant discover my tests, but if I run them using the context menu option 'Run JS Tests' or 'Open in Browser' they work fine. They also work fine if I run...
View ArticleNew Post: Problem with test explorer not finding tests using requirejs and qunit
Could you give a zip of your sample app so I can test locally?
View ArticleNew Post: getting referance error when using Chutzpah script runner
Hi we are using angularJs with typescript. For unit testing we are using Jasmine. And to run jasmine we are using Chutzpah script runner. When i am trying to build project it giving me an error that...
View ArticleNew Post: getting referance error when using Chutzpah script runner
Those references are to the .d.ts file but Chutzpah needs to know where the actual implementation .js files are. You can do this using /// <chutzpah_reference path="path/to/angular.js" >
View ArticleNew Post: getting referance error when using Chutzpah script runner
Thanks for your reply... Yes now reference error gone... but now i am facing Time out issue... I am executing the file using command line i have also added the "/timeoutMilliseconds 10000" and i am...
View ArticleNew Post: Problem with test explorer not finding tests using requirejs and qunit
Sorry about the delay, had to create a project that reproduced the issue. You can get it from here: http://www.codenutz.com/ChutzpahRequireSample.zip The project was working fine, but the problem...
View ArticleNew Post: getting referance error when using Chutzpah script runner
Can you give me a zip containing a repro of this issue?
View ArticleNew Post: getting referance error when using Chutzpah script runner
I dont have any sample the issue in my project which i cant share... :( I will try to reproduce this in to another sample and share with you... do you have any possible work around for time out ?
View ArticleNew Post: getting referance error when using Chutzpah script runner
For me to understand better what you are trying to do and what might be not working I need to see an end-to-end example.
View ArticleNew Post: File reference ordering issue
Good afternoon, I have a project for which I am using chutzpah.json to reference all necessary files. Currently all my tests are passing, but simply changing the order of my references causes some to...
View ArticleNew Post: File reference ordering issue
Its hard to say if this is expected in all cases but it doesn't surprise me. Whatever order you put your references in the .json file is the same order Chutzpah will put them in the .html file it...
View ArticleNew Post: File reference ordering issue
That is my case, and the functionality does not surprise me either, I just wanted to confirm. On another note, when referencing folders does Chutzpah then load files by alphabetical order? Also, I am...
View ArticleNew Post: File reference ordering issue
Chutzpah doesn't make any order guarantee when you load via folder. It just calls the file system and asks it to hand it the files. RequireJS can help with managing dependencies for a large project but...
View ArticleNew Post: File reference ordering issue
I see. Well, thanks for your assistance, and great job with the project! Would you have any final suggestion on how to better handle a very large amount of references and dependencies in Chutzpah?
View ArticleNew Post: File reference ordering issue
How large are you talking about? If there are many that have specific ordering needs you will need to list them individually or break them into folders where you can safely import one folder before...
View Article