[ftr] remove timestamp prefix, jenkins has it built in now (#13825)

This commit is contained in:
Spencer 2017-09-14 19:21:56 -07:00 committed by GitHub
parent 7866a15db7
commit e72a20670d

View file

@ -1,6 +1,5 @@
import moment from 'moment';
import { createFunctionalTestRunner } from '../src/functional_test_runner';
import { createToolingLog, createMapStream } from '../src/utils';
import { createToolingLog } from '../src/utils';
export default function (grunt) {
grunt.registerMultiTask('functional_test_runner', 'run tests with the functional test runner', function () {
@ -11,11 +10,7 @@ export default function (grunt) {
} = this.options();
const log = createToolingLog(logLevel);
log
.pipe(createMapStream(line => {
return `${moment().format('hh:mm:ss.SSS')} ${line}`;
}))
.pipe(process.stdout);
log.pipe(process.stdout);
const functionalTestRunner = createFunctionalTestRunner({
log,