Skip to content

Commit

Permalink
test(transport-test): use 2-latest emu (main has some breaking change)
Browse files Browse the repository at this point in the history
  • Loading branch information
mroz22 committed Nov 14, 2024
1 parent 7db9cd6 commit 2b3b60b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/transport-test/e2e/bridge/bridge-listen.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { controller as TrezorUserEnvLink } from './controller';
import { descriptor as expectedDescriptor } from './expect';
import { assertSuccess } from '../api/utils';

const emulatorStartOpts = { model: 'T2T1', version: '2-main', wipe: true } as const;
const emulatorStartOpts = { model: 'T2T1', version: '2-latest', wipe: true } as const;

describe('bridge', () => {
beforeAll(async () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/transport-test/e2e/bridge/bridge.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { controller as TrezorUserEnvLink, env } from './controller';
import { pathLength, descriptor as expectedDescriptor } from './expect';
import { assertSuccess } from '../api/utils';

const emulatorStartOpts = { model: 'T2T1', version: '2-main', wipe: true } as const;
const emulatorStartOpts = { model: 'T2T1', version: '2-latest', wipe: true } as const;

describe('bridge', () => {
let bridge: BridgeTransport;
Expand Down
2 changes: 1 addition & 1 deletion packages/transport-test/e2e/bridge/multi-client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const getDescriptor = (descriptor: Partial<Descriptor>): Descriptor => {
return d;
};

const emulatorStartOpts = { model: 'T2T1', version: '2-main', wipe: true } as const;
const emulatorStartOpts = { model: 'T2T1', version: '2-latest', wipe: true } as const;

describe('bridge', () => {
let bridge1: BridgeTransport;
Expand Down

0 comments on commit 2b3b60b

Please sign in to comment.