From 096d25878d2c1dfcfff26eb59c34ca8c42039f8c Mon Sep 17 00:00:00 2001 From: Aarif Khamdi Date: Wed, 25 Oct 2023 17:42:02 +0500 Subject: [PATCH] Update advanced.md https://github.com/codeceptjs/CodeceptJS/issues/1295 My problem was with debugging codeceptjs in nx-based repo. The solution is the same --- docs/advanced.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced.md b/docs/advanced.md index b5b686918..b1ff65939 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -150,7 +150,7 @@ For **Visual Studio Code**, add the following configuration in launch.json: "request": "launch", "name": "codeceptjs", "args": ["run", "--grep", "@your_test_tag"], - "program": "${workspaceFolder}/node_modules/.bin/codeceptjs" + "program": "${workspaceFolder}/node_modules/codeceptjs/bin/codecept.js" } ```