This commit is contained in:
Jared Cuffe 2025-12-16 15:57:50 +00:00 committed by GitHub
commit feebb036b6
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');