Skip to content

Commit 1e67454

Browse files
committed
remove debug info from spec.
1 parent 8c55d21 commit 1e67454

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

test/tasks/init.spec.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ describe('The Angularity init task should correctly initialise all the files nee
2020
helper.runAngularity(['init', '-n', customName])
2121
.then(function (result) {
2222

23-
//debug travis issue
24-
var lsCommand = (require('os').platform() === 'linux') ? 'ls -al' : 'echo %cd% && dir';
25-
console.log(require('shelljs').exec(lsCommand).stdout);
26-
2723
//'init:bower'
2824
var bowerFile = path.join(initTempPath, 'bower.json');
2925
expect(fs.existsSync(bowerFile)).toBe(true);
@@ -45,12 +41,6 @@ describe('The Angularity init task should correctly initialise all the files nee
4541
//'init:jshint'
4642
expect(fs.existsSync(path.join(initTempPath, '.jshintrc'))).toBe(true);
4743

48-
//debug travis issue
49-
console.log(path.join(initTempPath, '.gitignore'));
50-
51-
//'init:gitignore'
52-
expect(fs.existsSync(path.join(initTempPath, '.gitignore'))).toBe(true);
53-
5444
//'init:composition'
5545
var appPath = path.join(initTempPath, 'app');
5646
expect(fs.existsSync(path.join(appPath, 'index.html'))).toBe(true);

0 commit comments

Comments
 (0)