Skip to content

Commit

Permalink
fix(api): storage widget not working on from source installation
Browse files Browse the repository at this point in the history
  • Loading branch information
MauriceNino committed Sep 16, 2022
1 parent 1e49d4c commit 0ab0f66
Show file tree
Hide file tree
Showing 6 changed files with 673 additions and 6 deletions.
5 changes: 5 additions & 0 deletions apps/api/__TESTS__/dynamic-info.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
TEST_CASE_10,
TEST_CASE_11,
TEST_CASE_12,
TEST_CASE_13,
TEST_CASE_2,
TEST_CASE_3,
TEST_CASE_4,
Expand Down Expand Up @@ -69,5 +70,9 @@ describe('Dynamic Info', () => {
const output = mapToStorageOutput(...toStorageInp(TEST_CASE_12));
expect(output).to.deep.equal(TEST_CASE_12.output);
});
it('Test Case 13', () => {
const output = mapToStorageOutput(...toStorageInp(TEST_CASE_13));
expect(output).to.deep.equal(TEST_CASE_13.output);
});
});
});
5 changes: 5 additions & 0 deletions apps/api/__TESTS__/static-info.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import {
TEST_CASE_10,
TEST_CASE_11,
TEST_CASE_12,
TEST_CASE_13,
TEST_CASE_2,
TEST_CASE_3,
TEST_CASE_4,
Expand Down Expand Up @@ -69,5 +70,9 @@ describe('Static Info', () => {
const output = mapToStorageLayout(...toStorageInp(TEST_CASE_12));
expect(output).to.deep.equal(TEST_CASE_12.layout);
});
it('Test Case 13', () => {
const output = mapToStorageLayout(...toStorageInp(TEST_CASE_13));
expect(output).to.deep.equal(TEST_CASE_12.layout);
});
});
});

0 comments on commit 0ab0f66

Please sign in to comment.