File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 * in compliance with, at your election, the Elastic License 2.0 or the Server
66 * Side Public License, v 1.
77 */
8+ import { relative } from 'path' ;
89
910import { ToolingLog } from '@kbn/dev-utils' ;
1011
@@ -121,7 +122,7 @@ export class FunctionalTestRunner {
121122 }
122123
123124 // eslint-disable-next-line
124- console . log ( `--- Running ${ Path . relative ( process . cwd ( ) , this . configFile ) } ` ) ;
125+ console . log ( `--- Running ${ relative ( process . cwd ( ) , this . configFile ) } ` ) ;
125126
126127 const dockerServers = new DockerServersService (
127128 config . get ( 'dockerServers' ) ,
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export async function runTests(options) {
8888 continue ;
8989 }
9090
91- console . log ( `--- Running ${ Path . relative ( process . cwd ( ) , configPath ) } ` ) ;
91+ console . log ( `--- Running ${ relative ( process . cwd ( ) , configPath ) } ` ) ;
9292
9393 await withProcRunner ( log , async ( procs ) => {
9494 const config = await readConfigFile ( log , configPath ) ;
You can’t perform that action at this time.
0 commit comments