From a82a87a66939c327b65f394abd99a3d194c860bb Mon Sep 17 00:00:00 2001 From: dead-horse Date: Wed, 19 Sep 2018 11:01:56 +0800 Subject: [PATCH] fix: debug-test invoke formatTestArgs --- test/fixtures/my-egg-bin/lib/cmd/test-debug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/my-egg-bin/lib/cmd/test-debug.js b/test/fixtures/my-egg-bin/lib/cmd/test-debug.js index 02ac0e78..b9baa155 100644 --- a/test/fixtures/my-egg-bin/lib/cmd/test-debug.js +++ b/test/fixtures/my-egg-bin/lib/cmd/test-debug.js @@ -8,7 +8,7 @@ class TestDebugCommand extends Command { } * run(context) { - const testArgs = this.formatTestArgs(context); + const testArgs = yield this.formatTestArgs(context); console.log('%j', testArgs); } }