Skip to content

Commit

Permalink
fix(29917): add missing coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Akaryatrh committed Feb 3, 2025
1 parent 17968b7 commit fa59731
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/keyring-eth-trezor/src/trezor-keyring.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,15 @@ describe('TrezorKeyring', function () {
});
});

describe('getModel', function () {
it('gets bridge model', async function () {
keyring.bridge.model = 'foo';
const model = keyring.getModel();

expect(model).toBe('foo');
});
});

describe('init', function () {
it('initialises the bridge', async function () {
const initStub = sinon.stub().resolves();
Expand Down

0 comments on commit fa59731

Please sign in to comment.