Revert convert to esm (#544)

* Revert "update got dependency and convert to esm module (#533)"

This reverts commit 77efb36ae3.

* keep new local test file changes

* keep changes to PR template

* update changelog
This commit is contained in:
John-Michael Faircloth 2024-04-15 16:39:55 -05:00 committed by GitHub
parent ee41aa2fcf
commit 66531b2752
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 14341 additions and 12232 deletions

View file

@ -1,12 +1,11 @@
import { vi, describe, test, expect } from 'vitest';
jest.mock('@actions/core');
jest.mock('@actions/core/lib/command');
const core = require('@actions/core');
vi.mock('@actions/core');
import core from '@actions/core';
const got = require('got');
const { when } = require('jest-when');
import got from 'got';
import { when } from 'jest-when'
import { exportSecrets } from '../../src/action.js';
const { exportSecrets } = require('../../src/action');
const vaultUrl = `http://${process.env.VAULT_HOST || 'localhost'}:${process.env.VAULT_PORT || '8200'}`;
const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}`
@ -85,7 +84,7 @@ describe('authenticate with userpass', () => {
});
beforeEach(() => {
vi.resetAllMocks();
jest.resetAllMocks();
when(core.getInput)
.calledWith('method', expect.anything())