Andrew Robinson
Andrew Robinson
I'll check my extensions, but in my screen shot you will see the closing parenthesis in red instead of yellow
I'm having the same issue. My use case is that my collections return data as paged collections. The actual array is a "data" property of the returned data. The response...
Found a work-around for those that may want it. In your model (not the collection), implement a parse method: ``` javascript parse: function(response, options) { var children = response.children; if...
It is not killing me, I can work around the issue until the next version is released. Thank you
FYI, I'm using the git source code (1.4.1) and this is working fine so far
We are seeing this issue as well. I'm starting to wonder if this is a karma issue, as we had the same issue in a coverage reporter and had to...
I added some `console.log` statements and ran a job on our jenkins machine. It reproduced the issue. Here was the output: ``` ------ onBrowserComplete TOTAL: 6848 SUCCESS Finished in 13...
After putting in more logging, I do not see `initializeXmlForBrowser` being called when the problem reproduces, so it would seem that karma did not call `onRunStart` nor `onBrowserStart`. I'm not...
Looks like this is a reproduction of this issue: https://github.com/karma-runner/karma/issues/945
Work-around that seems to be functioning: ``` 201c201,207 < return --- > if (testsuite === undefined) { > initializeXmlForBrowser(browser) > testsuite = suites[browser.id] > } > if (!testsuite) { >...