Skip to content

Commit

Permalink
updated test, merges folder might not be created in the future
Browse files Browse the repository at this point in the history
  • Loading branch information
csantanapr committed May 18, 2014
1 parent 4b5d2d6 commit faadd96
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/cordovacli_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,14 @@ exports.cordovacli = {
},
cordova_test: function (test) {
'use strict';
test.expect(5);
test.expect(4);

var expected = true;
var actual;

actual = grunt.file.isDir("myHybridAppFolder");
test.equal(actual, expected, 'should create a cordova project root folder');

actual = grunt.file.isDir("myHybridAppFolder/merges");
test.equal(actual, expected, 'should create a cordova project folder structure');

actual = grunt.file.isDir("myHybridAppFolder/platforms");
test.equal(actual, expected, 'should create a cordova project folder structure');

Expand Down

0 comments on commit faadd96

Please sign in to comment.