5
0
Fork 0
mirror of https://github.com/hashicorp/vault-action.git synced 2025-11-07 15:16:56 +00:00

fix fs import

This commit is contained in:
JM Faircloth 2024-03-11 15:35:19 -05:00
parent 716f86033e
commit b33900a34b
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
// @ts-check
import core from '@actions/core';
import fs from 'fs';
import * as fs from 'fs';
import got from 'got';
import rsasign from 'jsrsasign';

View file

@ -11,7 +11,7 @@ vi.mock('fs', () => ({
import core from '@actions/core';
import got from 'got'
import fs from 'fs';
import * as fs from 'fs';
import { when } from 'jest-when'
import { retrieveToken } from './auth.js';