Badisi

Results 85 comments of Badisi

For one, `angular` is using a `tsconfig.json` with `"module": "es2020"` whereas for the tests we need a `tsconfig.json` with `"module": "commonjs"`

The schematics already adds a second tsconfig file in `/test`, which is great ! But the issue here is that the file is named `tsconfig.e2e.json` which Vscode doesn't know about......

Working on it as we speak but also working on other improvements too ;-)

For this one to work completely we would also have to make sure that the `wdio.conf.ts` is located in the `/test` folder. Otherwise Vscode would also complain about typing.

The main issue here is that `wdio` is not able to parse `wdio.conf.ts` -> `Unexpected token 'export'` Using `autoCompileOpts` in the configuration file won't work as we can't parsed the...