John Hamm
John Hamm
Same here. Using Mobx 5.5.2 and nested stores as well.
Found the issue, but I'm not sure how to fix it. I have a root store: ``` export class AppStore { @observable uiStore: UiStore; @observable otherStore: OtherStore; constructor() { this.uiStore...
Where do you configure the color??
@dhilgarth - this looks very cool! Going to set it up. Wondering if you had plans to only rerun the tests that were changed somehow (I believe SpecWatchr did this?)
Nice job though! I particularly like the HTMLSpecFormatter in action. I tried running it inside Visual Studio in the "Web Browser" window so I could embed it like my Test...
Does anyone know if nspec works with NCrunch? I want to try that out.
The source code you linked to refers to ruby scripts which aren't posted, and also SpecWatchr had the feature of only running changed tests. I'll look into using the new...
@IvanRave thanks for the idea - I went ahead and implemented your idea and it worked. I've submitted a pull request! @hbenl #21 ![2018-11-14 16_20_27- extension development host - tests_jsonspec...
Well I spoke too soon. It worked on a small test project with a tsconfig.json file set to: ``` "compilerOptions": { "module": "commonjs" } ``` However, my Angular CLI project...
Unfortunately adding that jasminExplorer.env setting did not change the error (ts-node doesn't seem to be using that env variable for some reason), but directly changing "module" to "commonjs" in the...