Skip to content

Commit

Permalink
fix deply test
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanbuck committed Dec 12, 2014
1 parent 8405c9d commit 9289fad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/deploy_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ describe('.deploy()', function () {
});

it('take options', function () {
mctCore.deploy({});
mctCore.deploy({
rootPath: './path/to/myapp/'
});
});

it('deploy with client', function (done) {
Expand Down Expand Up @@ -93,7 +95,8 @@ describe('.deploy()', function () {

it('deploy with error callback', function (done) {
var options = {
baseurl: 'error-case'
baseurl: 'error-case',
rootPath: './path/to/myapp/'
};

var handler = function(err, data) {
Expand Down

0 comments on commit 9289fad

Please sign in to comment.