Skip to content

Commit

Permalink
fix() fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Sep 19, 2019
1 parent 49b8b9f commit d1d5748
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/lib/sub-app/sub-app.factory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ describe('SubApp Factory', () => {
const files: string[] = tree.files;
expect(files).toEqual([
'/nest-cli.json',
'/apps/main/tsconfig.app.json',
'/apps/main/tslint.json',
'/apps/nestjs-schematics/tsconfig.app.json',
'/apps/nestjs-schematics/tslint.json',
'/apps/project/tsconfig.app.json',
'/apps/project/tslint.json',
'/apps/project/src/app.controller.spec.ts',
Expand All @@ -39,8 +39,8 @@ describe('SubApp Factory', () => {
const files: string[] = tree.files;
expect(files).toEqual([
'/nest-cli.json',
'/apps/main/tsconfig.app.json',
'/apps/main/tslint.json',
'/apps/nestjs-schematics/tsconfig.app.json',
'/apps/nestjs-schematics/tslint.json',
'/apps/awesome-project/tsconfig.app.json',
'/apps/awesome-project/tslint.json',
'/apps/awesome-project/src/app.controller.spec.ts',
Expand All @@ -61,9 +61,9 @@ describe('SubApp Factory', () => {
const files: string[] = tree.files;
expect(files).toEqual([
'/nest-cli.json',
'/apps/main/.babelrc',
'/apps/main/index.js',
'/apps/main/jsconfig.json',
'/apps/nestjs-schematics/.babelrc',
'/apps/nestjs-schematics/index.js',
'/apps/nestjs-schematics/jsconfig.json',
'/apps/project/.babelrc',
'/apps/project/index.js',
'/apps/project/jsconfig.json',
Expand Down

0 comments on commit d1d5748

Please sign in to comment.