Skip to content

Commit 0b18cc7

Browse files
committed
Revert gulp --no-color
1 parent f3a6382 commit 0b18cc7

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

Tasks/Gulp/gulptask.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ if(!tl.exist(gulp)) {
3030
}
3131
else {
3232
var gt = tl.createToolRunner(gulp);
33-
gt.arg('--no-color');
3433
}
3534

3635
// optional - no targets will concat nothing

Tests/L0/Gulp/_suite.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ describe('Gulp Suite', function() {
4040
tr.setInput('gulpjs', 'node_modules/gulp/gulp.js');
4141
tr.run()
4242
.then(() => {
43-
assert(tr.ran('/usr/local/bin/gulp --no-color --gulpfile gulpfile.js'), 'it should have run Gulp');
43+
assert(tr.ran('/usr/local/bin/gulp --gulpfile gulpfile.js'), 'it should have run Gulp');
4444
assert(tr.invokedToolCount == 1, 'should have only run Gulp');
4545

4646
assert(tr.stderr.length == 0, 'should not have written to stderr');
@@ -223,7 +223,7 @@ describe('Gulp Suite', function() {
223223
tr.setInput('gulpjs', 'node_modules/gulp/gulp.js');
224224
tr.run()
225225
.then(() => {
226-
assert(tr.ran('/usr/local/bin/gulp --no-color --gulpfile gulpfile.js'), 'it should have run gulp');
226+
assert(tr.ran('/usr/local/bin/gulp --gulpfile gulpfile.js'), 'it should have run gulp');
227227
assert(tr.invokedToolCount == 1, 'should have only run gulp');
228228

229229
// success scripts don't necessarily set a result

Tests/L0/Gulp/gulpFails.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"gulp": "/usr/local/bin/gulp"
44
},
55
"exec": {
6-
"/usr/local/bin/gulp --no-color --gulpfile gulpfile.js": {
6+
"/usr/local/bin/gulp --gulpfile gulpfile.js": {
77
"code": 1,
88
"stdout": "gulp output here",
99
"stderr": "gulp failed with this output"

Tests/L0/Gulp/gulpGlobalGood.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"gulp": "/usr/local/bin/gulp"
44
},
55
"exec": {
6-
"/usr/local/bin/gulp --no-color --gulpfile gulpfile.js": {
6+
"/usr/local/bin/gulp --gulpfile gulpfile.js": {
77
"code": 0,
88
"stdout": "gulp output here"
99
}

0 commit comments

Comments
 (0)