mirror of
https://github.com/hashicorp/vault-action.git
synced 2026-07-26 00:13:16 +03:00
feat: make secret names less derp for tsts
This commit is contained in:
+2
-2
@@ -105,7 +105,7 @@ describe('exportSecrets', () => {
|
||||
|
||||
await exportSecrets();
|
||||
|
||||
expect(core.exportVariable).toBeCalledWith('KEY', 1);
|
||||
expect(core.exportVariable).toBeCalledWith('KEY', '1');
|
||||
});
|
||||
|
||||
it('mapped key retrieval', async () => {
|
||||
@@ -116,6 +116,6 @@ describe('exportSecrets', () => {
|
||||
|
||||
await exportSecrets();
|
||||
|
||||
expect(core.exportVariable).toBeCalledWith('TEST_NAME', 1);
|
||||
expect(core.exportVariable).toBeCalledWith('TEST_NAME', '1');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user