codemod icon indicating copy to clipboard operation
codemod copied to clipboard

A codemod to transform Protractor into WebdriverIO tests

Results 20 codemod issues
Sort by recently updated
recently updated
newest added

Bumps [release-it](https://github.com/release-it/release-it) from 17.2.0 to 17.2.1. Release notes Sourced from release-it's releases. Release 17.2.1 Update some dependencies (bb23771) Exit without error message when requireCommits is true but requireCommitsFail is false...

dependencies
javascript

Bumps [param-case](https://github.com/blakeembrey/change-case) from 3.0.4 to 4.0.0. Commits 55911ca Publish abe3e9e Refactor package into a monorepo with lerna 74c0cfc Bump eslint-utils from 1.3.1 to 1.4.3 (#62) 37aaf01 Bump handlebars from 4.0.12...

dependencies
javascript

Bumps [expect](https://github.com/jestjs/jest/tree/HEAD/packages/expect) from 29.4.3 to 29.7.0. Release notes Sourced from expect's releases. v29.7.0 Features [create-jest] Add npm init / yarn create initialiser for Jest projects (#14465) [jest-validate] Allow deprecation warnings...

dependencies
javascript

Bumps [octokit/request-action](https://github.com/octokit/request-action) from 2.2.0 to 2.3.0. Release notes Sourced from octokit/request-action's releases. v2.3.0 2.3.0 (2024-04-04) Features security: Add provenance (#302) (b7fa94c) Commits 21d174f build(release): compiled action for 2.3.0 b7fa94c feat(security):...

dependencies
github_actions

Bumps [camelcase](https://github.com/sindresorhus/camelcase) from 6.3.0 to 8.0.0. Release notes Sourced from camelcase's releases. v8.0.0 Breaking Require Node.js 16 3d497a1 Fixes Fix incorrect camelization (#112) e7dccc9 https://github.com/sindresorhus/camelcase/compare/v7.0.1...v8.0.0 v7.0.1 Fix the preserveConsecutiveUppercase option...

dependencies
javascript

- [ ] find and document all relevant changes in v9 - [ ] implement codemods for all of them, and add tests for it

help wanted

Is there a way to make the async codemod automatically wrap multiple items in parentheses like this?

bug
help wanted

I recently used the async codemod to convert 2,500 lines of tests and found it to be inconsistent. It **would add `await` places where it shouldn't**, for example, before underscore...

bug
help wanted

Running the async codemod on the following code ``` const foo = function() { mySyncFunctionDoesNotReturnAPromiseOrEvenExist(); }; ``` produces ``` const foo = function() { await mySyncFunctionDoesNotReturnAPromiseOrEvenExist(); }; ``` This is...

bug
help wanted

The async scripts works very well, thank you! One note though, is that it forgets to add the `await ` keyword on lines like this one: `const inputClassic = $(selectors.inputClassic);`...

bug
help wanted