Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f8925b6

Browse files
committedDec 9, 2024··
f
1 parent e351621 commit f8925b6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎lib/app.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const path = require('path');
44
const EventEmitter = require('events');
55
const co = require('co');
66
const is = require('is-type-of');
7-
const ready = require('get-ready');
7+
const { Ready } = require('get-ready');
88
const detectPort = require('detect-port');
99
const ConsoleLogger = require('egg-logger').EggConsoleLogger;
1010
const { sleep, rimraf } = require('./utils');
@@ -41,7 +41,7 @@ class MockApplication extends EventEmitter {
4141
this[APP_INIT] = false;
4242
this[INIT_ON_LISTENER] = new Set();
4343
this[INIT_ONCE_LISTENER] = new Set();
44-
ready.mixin(this);
44+
Ready.mixin(this);
4545
// listen once, otherwise will throw exception when emit error without listenr
4646
this.once('error', () => {});
4747

‎lib/cluster.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const path = require('path');
33
const os = require('os');
44
const childProcess = require('child_process');
55
const Coffee = require('coffee').Coffee;
6-
const ready = require('get-ready');
6+
const { Ready } = require('get-ready');
77
const co = require('co');
88
const awaitEvent = require('await-event');
99
const supertestRequest = require('./supertest');
@@ -71,7 +71,7 @@ class ClusterApplication extends Coffee {
7171
opt,
7272
});
7373

74-
ready.mixin(this);
74+
Ready.mixin(this);
7575

7676
this.port = options.port;
7777
this.baseDir = options.baseDir;

0 commit comments

Comments
 (0)
Please sign in to comment.