James Scharett
James Scharett
https://github.com/nathanboktae/chai-dom/issues/24
Ran across this thread as I'm running into same issue. Looks like Jest has the ability to [mock modules](https://facebook.github.io/jest/docs/en/mock-functions.html#mocking-modules) that are required by other modules. Looks like tit can also...
Would [this ](https://railsware.com/blog/2017/01/10/mocking-es6-module-import-without-dependency-injection/)do the trick? ``` /*bar.js*/ export function bar(){} /*foo.js*/ import { bar } from 'bar'; export function foo(){bar();} /*foo.spec.js*/ import * as Bar from 'bar'; jasmine.spyOn(Bar, 'bar'); ```...
Is support still planned?
I second utilizing the CLIEngine if possible. Adding a list of source patterns not to lint appears to greatly reduce performance.
Any hopes to get v4 support? Is this project still maintained?
This seems like a large change incorporating more than just conditional options. Specifically, the package.json and build changes seem like they should go into a separate PR.
Agreed, I should have split it, but was in a hurry to get this into my project. I'm usually better about this type of stuff.
Any update on this? The plugin installs with no issues, just doesn't seem to be fully integrated into the Team aspect, at least with Subversive. No option to create a...