File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const path = require('path');
4
4
const EventEmitter = require ( 'events' ) ;
5
5
const co = require ( 'co' ) ;
6
6
const is = require ( 'is-type-of' ) ;
7
- const ready = require ( 'get-ready' ) ;
7
+ const { Ready } = require ( 'get-ready' ) ;
8
8
const detectPort = require ( 'detect-port' ) ;
9
9
const ConsoleLogger = require ( 'egg-logger' ) . EggConsoleLogger ;
10
10
const { sleep, rimraf } = require ( './utils' ) ;
@@ -41,7 +41,7 @@ class MockApplication extends EventEmitter {
41
41
this [ APP_INIT ] = false ;
42
42
this [ INIT_ON_LISTENER ] = new Set ( ) ;
43
43
this [ INIT_ONCE_LISTENER ] = new Set ( ) ;
44
- ready . mixin ( this ) ;
44
+ Ready . mixin ( this ) ;
45
45
// listen once, otherwise will throw exception when emit error without listenr
46
46
this . once ( 'error' , ( ) => { } ) ;
47
47
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ const path = require('path');
3
3
const os = require ( 'os' ) ;
4
4
const childProcess = require ( 'child_process' ) ;
5
5
const Coffee = require ( 'coffee' ) . Coffee ;
6
- const ready = require ( 'get-ready' ) ;
6
+ const { Ready } = require ( 'get-ready' ) ;
7
7
const co = require ( 'co' ) ;
8
8
const awaitEvent = require ( 'await-event' ) ;
9
9
const supertestRequest = require ( './supertest' ) ;
@@ -71,7 +71,7 @@ class ClusterApplication extends Coffee {
71
71
opt,
72
72
} ) ;
73
73
74
- ready . mixin ( this ) ;
74
+ Ready . mixin ( this ) ;
75
75
76
76
this . port = options . port ;
77
77
this . baseDir = options . baseDir ;
You can’t perform that action at this time.
0 commit comments