Skip to content

Commit d0152b1

Browse files
committed
remove debug
1 parent 9569a09 commit d0152b1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/headless_test.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2015 IBM Corp.
2+
* Copyright 2016 IBM Corp.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -58,22 +58,18 @@ tap.test('Headless mode should produce a .hcd file', function(t) {
5858
});
5959

6060
function cleanUp() {
61-
console.log("cleanup");
6261
app.endRun();
6362
deleteDir(outputDir);
6463
}
6564

6665
function deleteDir(directory) {
6766
// Delete temporary directory
68-
console.log("deleting " + directory);
6967
if(fs.existsSync(directory)) {
7068
fs.readdirSync(directory).forEach(function(file,index){
7169
var fileName = path.join(directory, file)
72-
console.log("deleting " + file);
7370
fs.unlinkSync(fileName)
7471
})
7572
fs.rmdirSync(directory);
76-
console.log("deleted " + directory);
7773
}
7874
}
7975

0 commit comments

Comments
 (0)