bricks-cli
Version:
Command line tool for developing ambitious ember.js apps
26 lines (20 loc) • 592 B
JavaScript
;
var assert = require('../../helpers/assert');
var TestTask = require('../../../lib/tasks/test');
describe('test', function() {
var subject;
it('transforms the options and invokes testem properly', function() {
subject = new TestTask({
invokeTestem: function(options) {
assert.equal(options.file, 'blahzorz.conf');
assert.equal(options.port, 123324);
assert.equal(options.cwd, 'blerpy-derpy');
}
});
subject.run({
configFile: 'blahzorz.conf',
port: 123324,
outputPath: 'blerpy-derpy'
});
});
});