Reverting save to load
This commit is contained in:
parent
1463da64db
commit
2f8f69e7ee
1 changed files with 5 additions and 1 deletions
|
|
@ -507,7 +507,7 @@ describe('Store', () => {
|
||||||
globalMethods.callHttpClient = jest.fn().mockReturnValue(Promise.resolve(response));
|
globalMethods.callHttpClient = jest.fn().mockReturnValue(Promise.resolve(response));
|
||||||
|
|
||||||
// Act
|
// Act
|
||||||
const result = store.loadSession();
|
const result = store.saveSession();
|
||||||
|
|
||||||
// Asserts
|
// Asserts
|
||||||
await expect(result).resolves.toBe(response);
|
await expect(result).resolves.toBe(response);
|
||||||
|
|
@ -1343,6 +1343,10 @@ describe('Store', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('getCoveragePolicyInfo method', () => {
|
||||||
|
// TODO add tests
|
||||||
|
});
|
||||||
|
|
||||||
describe('saveEndorsementQuestionAnswers method', () => {
|
describe('saveEndorsementQuestionAnswers method', () => {
|
||||||
it('method should update endorsement question data in store', () => {
|
it('method should update endorsement question data in store', () => {
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue