-
Updated
Oct 4, 2020 - TypeScript
codemod
Here are 121 public repositories matching this topic...
-
Updated
Oct 3, 2020 - JavaScript
-
Updated
Mar 18, 2020 - JavaScript
-
Updated
Oct 4, 2020 - JavaScript
- ignore test file patterns, we can read those from jest.config.js
- ignore
it()description - ignore
describe()description
-
Updated
May 4, 2017 - JavaScript
-
Updated
Sep 29, 2020 - JavaScript
-
Updated
Sep 29, 2020 - JavaScript
-
Updated
Sep 4, 2020 - JavaScript
-
Updated
Dec 26, 2018 - JavaScript
-
Updated
Oct 6, 2020 - JavaScript
-
Updated
Oct 7, 2020 - JavaScript
-
Updated
Jul 18, 2020 - TypeScript
-
Updated
Oct 5, 2017 - TypeScript
-
Updated
May 4, 2018 - JavaScript
-
Updated
Sep 12, 2020 - TypeScript
-
Updated
Apr 3, 2020
-
Updated
Sep 4, 2020 - JavaScript
Currently, we have support for transforming static Methods on prototype from
Controller.staticMethod = function(param) {
var bar = "webpack-cli";
};to
static staticMethod(param) {
var bar = "webpack-cli";
}But, we don't have support for transforming object expressions like this:
Controller.optionsObject = {
bar: "webpack-cli"
};We need
Improve this page
Add a description, image, and links to the codemod topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the codemod topic, visit your repo's landing page and select "manage topics."
The
andmethod is not supported by Jest, where Chai does support it.It should probably cut the assertion in two:
Is this a feasible option for codemods?
If so: I'm willing to work on a PR.