'use strict';
var path = require('path');
var RSVP = require('rsvp');
var resolve = RSVP.denodeify(require('resolve'));
module.exports = function(root) {
/* Find ember-cli's entry point module relative to
the current projects root */
return resolve('ember-cli', { basedir: root })
.then(function(emberPath) {
// Return the path to the ember command script
return path.join(emberPath, '..', '..', '..', 'bin', 'ember');
});
};
# |
Change |
User |
Description |
Committed |
|
#1
|
23539 |
jenbottom |
Adding the basic code for ember test appk, created with 'ember new' command |
|
|