Skip to content

Commit 9ddb7c9

Browse files
committed
updated
1 parent b4021c9 commit 9ddb7c9

File tree

2 files changed

+42
-16
lines changed

2 files changed

+42
-16
lines changed

.vscode/launch.json

Lines changed: 41 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,59 @@
1+
// Copyright (c) [Year] [Lucky Jacks Casino]
2+
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
3+
14
{
25
// Use IntelliSense to learn about possible attributes.
36
// Hover to view descriptions of existing attributes.
47
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
58
"version": "0.2.0",
69
"configurations": [
710
{
8-
"name": "Launch Program",
911
"type": "node",
1012
"request": "launch",
13+
"name": "Launch Program",
1114
"program": "${workspaceFolder}/app.js",
12-
"console": "integratedTerminal"
15+
"skipFiles": [
16+
"<node_internals>/**"
17+
]
1318
},
1419
{
15-
"name": "Attach to Chrome",
16-
"type": "chrome",
17-
"request": "attach",
18-
"port": 9222,
19-
"webRoot": "${workspaceFolder}"
20+
"name": "Launch file",
21+
"type": "go",
22+
"request": "launch",
23+
"mode": "debug",
24+
"program": "${file}"
2025
},
2126
{
22-
"name": ".NET Core Attach",
23-
"type": "coreclr",
27+
"name": "RobotCode: Remote-Attach",
28+
"type": "robotcode",
2429
"request": "attach",
25-
"pipeTransport": {
26-
"pipeCwd": "${workspaceFolder}",
27-
"pipeProgram": "/usr/bin/ssh",
28-
"pipeArgs": ["user@remote-machine"],
29-
"debuggerPath": "~/vsdbg/vsdbg"
30-
}
30+
"connect": {
31+
"host": "localhost",
32+
"port": 6612
33+
},
34+
"pathMappings": [
35+
{
36+
"localRoot": "${workspaceFolder}",
37+
"remoteRoot": "."
38+
}
39+
]
40+
},
41+
{
42+
"name": "RobotCode: Local-Launch",
43+
"type": "robotcode",
44+
"request": "launch",
45+
"program": "${workspaceFolder}/tests/robotcode_test.robot",
46+
"args": [],
47+
"cwd": "${workspaceFolder}",
48+
"env": {},
49+
"console": "integratedTerminal"
50+
},
51+
{
52+
"type": "chrome",
53+
"request": "launch",
54+
"name": "Launch Chrome against localhost",
55+
"url": "http://localhost:8080",
56+
"webRoot": "${workspaceFolder}"
3157
}
3258
]
3359
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"python.testing.pytestArgs": [
3-
"my-nodejs-project"
3+
"."
44
],
55
"python.testing.unittestEnabled": false,
66
"python.testing.pytestEnabled": true

0 commit comments

Comments
 (0)