This commit is contained in:
Jared Cuffe 2026-01-27 11:53:42 +00:00 committed by GitHub
commit 2d6d9a5a12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 84 additions and 16 deletions

View file

@ -571,6 +571,13 @@ describe('Setup Terraform', () => {
.fn()
.mockReturnValueOnce('file');
tc.cacheDir = jest.fn()
.mockReturnValueOnce('file');
tc.find = jest
.fn()
.mockReturnValueOnce(null);
os.platform = jest
.fn()
.mockReturnValue('linux');
@ -615,6 +622,13 @@ describe('Setup Terraform', () => {
.fn()
.mockReturnValueOnce('file');
tc.cacheDir = jest.fn()
.mockReturnValueOnce('file');
tc.find = jest
.fn()
.mockReturnValueOnce(null);
os.platform = jest
.fn()
.mockReturnValue('win32');