File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -151,8 +151,11 @@ describe('findPyPyVersion', () => {
151
151
let spyChmodSync : jest . SpyInstance ;
152
152
let spyCoreAddPath : jest . SpyInstance ;
153
153
let spyCoreExportVariable : jest . SpyInstance ;
154
+ const env = process . env ;
154
155
155
156
beforeEach ( ( ) => {
157
+ jest . resetModules ( ) ;
158
+ process . env = { ...env } ;
156
159
tcFind = jest . spyOn ( tc , 'find' ) ;
157
160
tcFind . mockImplementation ( ( tool : string , version : string ) => {
158
161
const semverRange = new semver . Range ( version ) ;
@@ -214,6 +217,7 @@ describe('findPyPyVersion', () => {
214
217
jest . resetAllMocks ( ) ;
215
218
jest . clearAllMocks ( ) ;
216
219
jest . restoreAllMocks ( ) ;
220
+ process . env = env ;
217
221
} ) ;
218
222
219
223
it ( 'found PyPy in toolcache' , async ( ) => {
Original file line number Diff line number Diff line change @@ -28,17 +28,20 @@ const manifestData = require('./data/versions-manifest.json');
28
28
describe ( 'Finder tests' , ( ) => {
29
29
let spyCoreAddPath : jest . SpyInstance ;
30
30
let spyCoreExportVariable : jest . SpyInstance ;
31
+ const env = process . env ;
31
32
32
33
beforeEach ( ( ) => {
34
+ jest . resetModules ( ) ;
35
+ process . env = { ...env } ;
33
36
spyCoreAddPath = jest . spyOn ( core , 'addPath' ) ;
34
-
35
37
spyCoreExportVariable = jest . spyOn ( core , 'exportVariable' ) ;
36
38
} ) ;
37
39
38
40
afterEach ( ( ) => {
39
41
jest . resetAllMocks ( ) ;
40
42
jest . clearAllMocks ( ) ;
41
43
jest . restoreAllMocks ( ) ;
44
+ process . env = env ;
42
45
} ) ;
43
46
44
47
it ( 'Finds Python if it is installed' , async ( ) => {
@@ -66,7 +69,6 @@ describe('Finder tests', () => {
66
69
await finder . useCpythonVersion ( '3.x' , 'x64' , false ) ;
67
70
expect ( spyCoreAddPath ) . not . toHaveBeenCalled ( ) ;
68
71
expect ( spyCoreExportVariable ) . not . toHaveBeenCalled ( ) ;
69
- expect ( spyCoreExportVariable ) . not . toHaveBeenCalled ( ) ;
70
72
} ) ;
71
73
72
74
it ( 'Finds stable Python version if it is not installed, but exists in the manifest' , async ( ) => {
You can’t perform that action at this time.
0 commit comments