'use strict';
var Launcher = require('./launcher');
var extend = require('lodash.assignin');
function LauncherFactory(name, settings, config) {
this.name = name;
this.config = config;
this.settings = settings;
}
LauncherFactory.prototype = {
create: function(options) {
var settings = extend({}, this.settings, options);
return new Launcher(this.name, settings, this.config);
}
};
module.exports = LauncherFactory;
# |
Change |
User |
Description |
Committed |
|
#1
|
23539 |
jenbottom |
Adding the basic code for ember test appk, created with 'ember new' command |
|
|