Skip to content

Commit

Permalink
fix(react): set defaults properly for unitTestRunner and e2eTestRunner (
Browse files Browse the repository at this point in the history
nrwl#4781)

Also sets the schema.json files to be nx
  • Loading branch information
Cammisuli authored Feb 12, 2021
1 parent 4f758d4 commit 871b3c8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ export function normalizeOptions(

options.routing = options.routing ?? false;
options.classComponent = options.classComponent ?? false;
options.unitTestRunner = options.unitTestRunner ?? 'jest';
options.e2eTestRunner = options.e2eTestRunner ?? 'cypress';

return {
...options,
Expand Down

0 comments on commit 871b3c8

Please sign in to comment.