Skip to content

Commit 6a55699

Browse files
committed
add ignore for windows
1 parent 9945456 commit 6a55699

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/test/testing/testController/utils.unit.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ suite('getTempDir tests', () => {
6868
});
6969

7070
test('should use XDG_RUNTIME_DIR on non-Windows if available', async () => {
71+
if (process.platform === 'win32') {
72+
return;
73+
}
7174
// Force platform to be Linux
7275
Object.defineProperty(process, 'platform', { value: 'linux' });
7376

0 commit comments

Comments
 (0)