What I did: 1. `npm i -g @angular/cli@latest` (=> 11.2.11) 1. `ng new wdio-test` (strict & routing yes, styling format scss) 1. `ng add @wdio/schematics --yes --removeProtractor` Expected: * `protractor` dependency removed from `package.json` * e2e folder removed * e2e property in `angular.json` configured to not use protractor anymore Actual: * `protractor` dependency still in `package.json` * e2e folder still existing * `angular.json` is untouched * `ENOENT: no such file or directory, open '[...]\wdio-test\wdio.conf.js'` (probably its own issue, as a `wdio.conf.ts` is created)
What I did:
npm i -g @angular/cli@latest(=> 11.2.11)ng new wdio-test(strict & routing yes, styling format scss)ng add @wdio/schematics --yes --removeProtractorExpected:
protractordependency removed frompackage.jsonangular.jsonconfigured to not use protractor anymoreActual:
protractordependency still inpackage.jsonangular.jsonis untouchedENOENT: no such file or directory, open '[...]\wdio-test\wdio.conf.js'(probably its own issue, as a
wdio.conf.tsis created)