feat: make secret names less derp for tsts

This commit is contained in:
Richard Simpson
2019-09-20 17:29:13 -05:00
parent 13eebbc4e5
commit b524055d38
5 changed files with 19 additions and 26 deletions

View File

@@ -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');
});
});