Dominic Slee
Dominic Slee
My logic for handling disconnects is like this: ```typescript private attachToConnCloseEvents(conn: DataConnection, fn: () => void) { conn.on('close', () => fn()); // @ts-ignore conn.on('iceStateChanged', (status: RTCIceConnectionState) => { if (status...
From `jestRunnerConfig.ts` when it resolves `cwd()`, it looks for the nearest package, but only if the package has `node_modules/jest`: https://github.com/firsttris/vscode-jest-runner/blob/81b797c77eb23fbc5c07a8a953a57b15edf0685a/src/jestRunnerConfig.ts#L64-L74 So the current fallback logic for `jestrunner.changeDirectoryToWorkspaceRoot` is: 1. `jestrunner.projectPath`...
Please try `--permission disable` to fix `os error 1355` (see https://github.com/lsd-rs/lsd/pull/882, it isn't in 1.0.0)
@jeansagi currently `--permission disable` has been merged but not released yet - currently the only way is from source like this: ```bash cargo install --git https://github.com/lsd-rs/lsd.git ```
I suggest closing this one since https://github.com/lsd-rs/lsd/pull/882 is merged (adding `--permission disabled`) 👍
This is a reasonable idea, it could be something like * If `jest.config.js|ts|mjs|cjs|json` exists in a parent directory, OR * If any settings `jestrunner.*` is set? We need to account...
@microsoft-github-policy-service agree
The place it is done for cmdlets like `Get-ChildItem` is here, and it supports `~`, `startsWith("~/")` and `startsWith("~\")`: https://github.com/PowerShell/PowerShell/blob/dab6ca28f545d2c15dc4cc9e5121daf3b24b47bd/src/System.Management.Automation/namespaces/LocationGlobber.cs#L4542-L4552
Does this problem still occur?
Salutations What's an example structure this is trying to fix? You were discussing `changeDirectoryToWorkspaceRoot` as `true` in #296, maybe it's an idea to change how the debug behaves when this...