Skip to content

Commit fe8d0e7

Browse files
committed
Fix test on windows
1 parent 9aac827 commit fe8d0e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/suite/extension.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ suite('Extension Test Suite', () => {
136136
await getHaskellConfig().update('releasesDownloadStoragePath', path.normalize(getWorkspaceFile('bin').fsPath));
137137
await getHaskellConfig().update('serverEnvironment', {
138138
XDG_CACHE_HOME: path.normalize(getWorkspaceFile('cache-test').fsPath),
139-
TMPDIR: tmpdir
139+
TMPDIR: tmpdir,
140+
TMP: tmpdir,
140141
});
141142
fs.mkdirSync(tmpdir, { recursive: true });
142143
const contents = new TextEncoder().encode('main = putStrLn "hi vscode tests"');

0 commit comments

Comments
 (0)