Skip to content

Commit

Permalink
v1.1.9 Fix type tests (#74)
Browse files Browse the repository at this point in the history
* fix type tests and bump node

* re-run

Co-authored-by: Eric Semeniuc <[email protected]>
  • Loading branch information
esemeniuc and Eric Semeniuc authored Mar 25, 2022
1 parent 21f607f commit 6ef8dba
Show file tree
Hide file tree
Showing 3 changed files with 577 additions and 588 deletions.
2 changes: 1 addition & 1 deletion __tests__/types.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('SYNTHETIC_ASSET_MAP', () => {

it('contains all markets in TOTAL_CORE_MARKETS_ARRAY', () => {
const assets = Object.keys(ASSET_RESOLUTION);
expect(Object.keys(SYNTHETIC_ASSET_MAP).every((x) => assets.includes(x)));
expect(Object.values(SYNTHETIC_ASSET_MAP).every((x) => assets.includes(x))).toBeTruthy();
});

it('contains all assets in DydxAsset', () => {
Expand Down
Loading

0 comments on commit 6ef8dba

Please sign in to comment.