File tree Expand file tree Collapse file tree
src/plugin/coreplugins/ExecutorPlugin
test/plugin/coreplugins/ExecutorPlugin Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 "start" : " node ./src/bin/start_server.js" ,
1111 "prepublishOnly" : " node ./utils/prepublish.js" ,
1212 "postinstall" : " node ./utils/postinstall.js" ,
13- "test" : " node ./node_modules/mocha/bin/mocha --exit --recursive test/common " ,
13+ "test" : " node ./node_modules/mocha/bin/mocha --exit --recursive test" ,
1414 "test_ci" : " node ./node_modules/mocha/bin/mocha --exit -R dot --timeout 10000 --recursive test" ,
1515 "test_cover" : " nyc --reporter=html --reporter=text node ./node_modules/mocha/bin/mocha --exit --recursive test" ,
1616 "docs" : " ./node_modules/.bin/jsdoc -c jsdoc_conf.json" ,
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ define([
126126 . then ( function ( jInfo ) {
127127 var key ,
128128 startOutput ;
129- self . logger . debug ( JSON . stringify ( jInfo , null , 4 ) ) ;
129+ console . log ( JSON . stringify ( jInfo , null , 4 ) ) ;
130130
131131 if ( jInfo . status === 'CREATED' || jInfo . status === 'RUNNING' ) {
132132 // The job is still running..
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ var testFixture = require('../../../_globals.js');
77
88// It fails consistently with node v20 in github action
99// Let's see if we're luckier with a new version..
10- ( process . version . startsWith ( 'v20' ) ? describe . skip : describe ) ( 'Executor Plugin' , function ( ) {
10+ describe . skip ( 'Executor Plugin' , function ( ) {
1111 'use strict' ;
1212
1313 var Q = testFixture . Q ,
@@ -174,8 +174,6 @@ var testFixture = require('../../../_globals.js');
174174 '-b' ,
175175 'b1' ] ;
176176
177- this . timeout ( 10000 ) ;
178-
179177 Q . ninvoke ( runPlugin , 'main' , args )
180178 . then ( function ( result ) {
181179 expect ( result . success ) . to . equal ( true ) ;
You can’t perform that action at this time.
0 commit comments