Skip to content

Commit f6f4dda

Browse files
Eric MORANDSBoudrias
Eric MORAND
authored andcommittedDec 1, 2016
Fix issue #947 (#982)
1 parent e1b95d8 commit f6f4dda

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎lib/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ var Base = module.exports = function Base(args, options) {
115115
this.log = this.env.adapter.log;
116116

117117
// determine the app root
118+
this.contextRoot = this.env.cwd;
119+
118120
var rootPath = findUp.sync('.yo-rc.json', {
119121
cwd: this.env.cwd
120122
});

‎test/base.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ describe('Base', function () {
5353
describe('constructor', function () {
5454
it('set the CWD where `.yo-rc.json` is found', function () {
5555
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);
5758
this.env.cwd = process.cwd();
5859

5960
var dummy = new this.Dummy(['foo'], {
@@ -63,6 +64,7 @@ describe('Base', function () {
6364

6465
assert.equal(process.cwd(), projectDir);
6566
assert.equal(dummy.destinationPath(), projectDir);
67+
assert.equal(dummy.contextRoot, subdir);
6668
});
6769

6870
it('use the environment options', function () {

0 commit comments

Comments
 (0)
Please sign in to comment.