-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve mocha transformer (webpack feedback) #109
Comments
used regexps: ([\(\)a-zA-Z0-9\."'/ +{}\[\]=\-,:?_!]+)\.should\.be\.eql ➡️ expect($1).toBe expect\(([\(\)a-zA-Z0-9\."'/ +{}\[\]=\-,:?_!]+)\)\.toBe\(\[ ➡️ expect($1).toEqual([ expect\(([\(\)a-zA-Z0-9\."'/ +{}\[\]=\-,:?_!]+)\)\.toBe\(\{ ➡️ expect($1).toEqual({
I think the codemods crashed on some files altogether, in some cases. You'll need to try it out yourself to see where things went wrong! :) |
@niieani thanks. I've checked out [email protected] (with [email protected]):
After upgrading jscodeshift, then result now looks a bit better. [email protected] [email protected]: TODO
|
Replaced by #116 |
See webpack/webpack@5a8083a#commitcomment-28797796
The text was updated successfully, but these errors were encountered: