Skip to content

Commit

Permalink
xx
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWhiteWord committed Dec 23, 2024
1 parent a52d690 commit ebbbfcb
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 17 deletions.
2 changes: 2 additions & 0 deletions js/test_core.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ console.log('Starting tests...');

// Test system initialization
try {
debugger; // Add breakpoint here
const initResult = system_init(testMd);
console.log('Initialization test:', initResult);
} catch (error) {
debugger; // Add breakpoint for errors
console.error('Initialization failed:', error);
}

Expand Down
28 changes: 28 additions & 0 deletions launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Core System",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/js/test_core.js",
"skipFiles": ["<node_internals>/**"],
"outFiles": ["${workspaceFolder}/js/**/*.js"]
},
{
"name": "Debug Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}/vscode-extension"
]
}
],
"inputs": [
{
"type": "promptString",
"id": "programPath",
"description": "Enter the path to the JavaScript file to launch"
}
]
}
17 changes: 0 additions & 17 deletions vscode-extension/launch.json

This file was deleted.

0 comments on commit ebbbfcb

Please sign in to comment.