File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,8 @@ var Base = module.exports = function Base(args, options) {
115
115
this . log = this . env . adapter . log ;
116
116
117
117
// determine the app root
118
+ this . contextRoot = this . env . cwd ;
119
+
118
120
var rootPath = findUp . sync ( '.yo-rc.json' , {
119
121
cwd : this . env . cwd
120
122
} ) ;
Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ describe('Base', function () {
53
53
describe ( 'constructor' , function ( ) {
54
54
it ( 'set the CWD where `.yo-rc.json` is found' , function ( ) {
55
55
var projectDir = path . join ( __dirname , 'fixtures/dummy-project' ) ;
56
- process . chdir ( path . join ( projectDir , 'subdir' ) ) ;
56
+ var subdir = path . join ( projectDir , 'subdir' ) ;
57
+ process . chdir ( subdir ) ;
57
58
this . env . cwd = process . cwd ( ) ;
58
59
59
60
var dummy = new this . Dummy ( [ 'foo' ] , {
@@ -63,6 +64,7 @@ describe('Base', function () {
63
64
64
65
assert . equal ( process . cwd ( ) , projectDir ) ;
65
66
assert . equal ( dummy . destinationPath ( ) , projectDir ) ;
67
+ assert . equal ( dummy . contextRoot , subdir ) ;
66
68
} ) ;
67
69
68
70
it ( 'use the environment options' , function ( ) {
You can’t perform that action at this time.
0 commit comments