Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support spaces for workspaceFolder on Windows #298

Open
apupier opened this issue Jan 23, 2025 · 0 comments
Open

Support spaces for workspaceFolder on Windows #298

apupier opened this issue Jan 23, 2025 · 0 comments
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug

Comments

@apupier
Copy link
Contributor

apupier commented Jan 23, 2025

in .vscode-test.mjs file, if I proivide something like:

import { defineConfig } from '@vscode/test-cli';

export default defineConfig({
	files: 'out/test/**/*.test.js',
	workspaceFolder: './with space',
	launchArgs: ['--verbose'],
	mocha: {
		ui: 'tdd',
		color: true,
		timeout: 100000,
		reporter: 'mocha-jenkins-reporter'
	}
});

on Windows, in the log I can see:

[main 2025-01-23T13:38:05.050Z] Starting VS Code
[main 2025-01-23T13:38:05.050Z] from: d:\a\vscode-kaoto\vscode-kaoto\.vscode-test\vscode-win32-x64-archive-1.96.4\resources\app
[main 2025-01-23T13:38:05.051Z] args: {
  _: [
    'D:\\a\\vscode-kaoto\\vscode-kaoto\\with',
    'D:\\a\\vscode-kaoto\\vscode-kaoto\\space'
  ],

on Linux, it is workign fine:

[main 2025-01-23T13:36:50.112Z] Starting VS Code
[main 2025-01-23T13:36:50.112Z] from: /home/runner/work/vscode-kaoto/vscode-kaoto/.vscode-test/vscode-linux-x64-1.96.4/resources/app
[main 2025-01-23T13:36:50.112Z] args: {
  _: [
    '/home/runner/work/vscode-kaoto/vscode-kaoto/with space'
  ],
@connor4312 connor4312 added the bug Issue identified by VS Code Team member as probable bug label Jan 23, 2025
@connor4312 connor4312 self-assigned this Jan 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issue identified by VS Code Team member as probable bug
Projects
None yet
Development

No branches or pull requests

2 participants