mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-07 15:16:56 +00:00
update test check
This commit is contained in:
parent
ccc7cef6eb
commit
b239ef37f5
1 changed files with 3 additions and 3 deletions
|
|
@ -12,7 +12,7 @@ describe('e2e', () => {
|
|||
expect(process.env.SUBSEQUENT_TEST_SECRET).toBe("SUBSEQUENT_TEST_SECRET");
|
||||
expect(process.env.JSONSTRING).toBe('{"x":1,"y":"qux"}');
|
||||
expect(process.env.JSONSTRINGMULTILINE).toBe('{"x": 1, "y": "q\\nux"}');
|
||||
expect(process.env.JSONDATA).toBe('{"x": 1, "y": "qux"}');
|
||||
expect(process.env.JSONDATA).toBe(JSON.stringify('{"x": 1, "y": "qux"}'));
|
||||
});
|
||||
|
||||
it('verify jsonstring', () => {
|
||||
|
|
@ -22,6 +22,6 @@ describe('e2e', () => {
|
|||
expect(process.env.JSONSTRINGMULTILINE).toBe('{"x": 1, "y": "q\\nux"}');
|
||||
});
|
||||
it('verify jsondata', () => {
|
||||
expect(process.env.JSONDATA).toBe('{"x": 1, "y": "qux"}');
|
||||
expect(process.env.JSONDATA).toBe(JSON.stringify('{"x": 1, "y": "qux"}'));
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue