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

chore: I really should PR changes

This commit is contained in:
Richard Simpson 2020-03-31 12:20:05 -05:00
parent ed8303ca53
commit 50ece41861
2 changed files with 7 additions and 11 deletions

View file

@ -198,19 +198,15 @@ describe('exportSecrets', () => {
function mockVaultData(data, version='2') {
switch(version) {
case '1':
got.mockResolvedValue({
body: JSON.stringify({
data
})
got.extend.mockReturnValue({
get: async () => ({ body: JSON.stringify({ data }) })
});
break;
case '2':
got.mockResolvedValue({
body: JSON.stringify({
data: {
data
}
})
got.extend.mockReturnValue({
get: async () => ({ body: JSON.stringify({ data: {
data
} }) })
});
break;
}

View file

@ -228,7 +228,7 @@ describe('authenticate with approle', () => {
.mockReturnValueOnce('ns2');
});
it.only('authenticate with approle', async() => {
it('authenticate with approle', async() => {
mockInput('test secret');
await exportSecrets();