From bd6490525e1aa906f431ff0336e119aa22497bae Mon Sep 17 00:00:00 2001 From: Brian Nguyen Date: Thu, 14 Jul 2022 09:20:17 +0700 Subject: [PATCH] tmp: logging Signed-off-by: Brian Nguyen --- tests/create-api-project.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/create-api-project.js b/tests/create-api-project.js index f4cba8f..70291cc 100644 --- a/tests/create-api-project.js +++ b/tests/create-api-project.js @@ -33,6 +33,8 @@ describe("The create-project-api command", () => { it("should print the correct output when user run with --populate option", async () => { const response = await execute("./index.js", ["create-project", "api", "myshop", "--populate"]); const responseLines = response.trim().split(EOL); + // eslint-disable-next-line no-console + console.log(response); expect(responseLines[1]).equal("reaction-cli: Added the sample data plugin successfully."); expect(responseLines[2]).equal("reaction-cli: Project creation complete. Change to your directory and run `npm install`");