Skip to content

Commit

Permalink
test() update unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Sep 19, 2019
1 parent c50ad28 commit e24b281
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/sub-app/sub-app.factory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('SubApp Factory', () => {
const options: SubAppOptions = {
name: 'project',
};
const tree: UnitTestTree = runner.runSchematic('app', options);
const tree: UnitTestTree = runner.runSchematic('sub-app', options);
const files: string[] = tree.files;
expect(files).toEqual([
'/apps/main/tsconfig.app.json',
Expand All @@ -34,7 +34,7 @@ describe('SubApp Factory', () => {
const options: SubAppOptions = {
name: 'awesomeProject',
};
const tree: UnitTestTree = runner.runSchematic('app', options);
const tree: UnitTestTree = runner.runSchematic('sub-app', options);
const files: string[] = tree.files;
expect(files).toEqual([
'/apps/main/tsconfig.app.json',
Expand All @@ -55,7 +55,7 @@ describe('SubApp Factory', () => {
name: 'project',
language: 'js',
};
const tree: UnitTestTree = runner.runSchematic('app', options);
const tree: UnitTestTree = runner.runSchematic('sub-app', options);
const files: string[] = tree.files;
expect(files).toEqual([
'/apps/main/.babelrc',
Expand Down

0 comments on commit e24b281

Please sign in to comment.