forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(@angular/cli): Use the app default prefix when generating
fixes angular#7522
- Loading branch information
1 parent
bf3c519
commit 1652aa3
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import {join} from 'path'; | ||
import {ng} from '../../../utils/process'; | ||
import {expectFileToMatch} from '../../../utils/fs'; | ||
import { updateJsonFile } from '../../../utils/project'; | ||
|
||
|
||
export default function() { | ||
const componentDir = join('src', 'app', 'test-component'); | ||
|
||
return Promise.resolve() | ||
.then(() => updateJsonFile('.angular-cli.json', configJson => { | ||
const app = configJson['apps'][0]; | ||
app['prefix'] = 'pre'; | ||
})) | ||
.then(() => ng('generate', 'component', 'test-component')) | ||
.then(() => expectFileToMatch(join(componentDir, 'test-component.component.ts'), | ||
/selector: 'pre-/)) | ||
|
||
// Try to run the unit tests. | ||
.then(() => ng('test', '--single-run')); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import {join} from 'path'; | ||
import {ng} from '../../../utils/process'; | ||
import {expectFileToMatch} from '../../../utils/fs'; | ||
import { updateJsonFile } from '../../../utils/project'; | ||
|
||
|
||
export default function() { | ||
const directiveDir = join('src', 'app'); | ||
|
||
return Promise.resolve() | ||
.then(() => updateJsonFile('.angular-cli.json', configJson => { | ||
const app = configJson['apps'][0]; | ||
app['prefix'] = 'pre'; | ||
})) | ||
.then(() => ng('generate', 'directive', 'test-directive')) | ||
.then(() => expectFileToMatch(join(directiveDir, 'test-directive.directive.ts'), | ||
/selector: '\[pre/)) | ||
|
||
// Try to run the unit tests. | ||
.then(() => ng('test', '--single-run')); | ||
} |