mirror of
https://github.com/godotengine/godot-vscode-plugin.git
synced 2025-12-31 13:48:24 +03:00
- Redesigned the representation of godot objects to match internal structure of godot server - Lazy evaluation for the godot objects - Stack frames now can be switched with variables updated
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
const { defineConfig } = require('@vscode/test-cli');
|
|
|
|
module.exports = defineConfig(
|
|
{
|
|
// version: '1.96.4',
|
|
label: 'unitTests',
|
|
files: 'out/**/*.test.js',
|
|
launchArgs: ['--disable-extensions'],
|
|
workspaceFolder: './test_projects/test-dap-project-godot4',
|
|
}
|
|
);
|