mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[ftr] remove timestamp prefix, jenkins has it built in now (#13825)
(cherry picked from commit e72a20670d
)
This commit is contained in:
parent
b33299895e
commit
8da37abff8
1 changed files with 2 additions and 7 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue