Skip to content

Commit

Permalink
Update tests for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrtenz committed Jul 14, 2023
1 parent 3230f0b commit 42c0ab5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/derivers/index.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { createBip39KeyFromSeed } from '.';

describe('index', () => {
it('has expected exports', () => {
expect(createBip39KeyFromSeed).toBeDefined();
});
});
4 changes: 4 additions & 0 deletions src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import {
secp256k1,
ed25519,
isValidBIP32PathSegment,
createBip39KeyFromSeed,
mnemonicPhraseToBytes,
} from '.';

// This is purely for coverage shenanigans
Expand All @@ -17,5 +19,7 @@ describe('index', () => {
expect(secp256k1).toBeDefined();
expect(ed25519).toBeDefined();
expect(isValidBIP32PathSegment).toBeDefined();
expect(createBip39KeyFromSeed).toBeDefined();
expect(mnemonicPhraseToBytes).toBeDefined();
});
});

0 comments on commit 42c0ab5

Please sign in to comment.