Skip to content

Commit

Permalink
test(react-native): fix teardown order
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonlesisz authored and mroz22 committed Feb 1, 2025
1 parent 76f073a commit a8cd2f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suite-native/app/e2e/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ export const prepareTrezorEmulator = async (
export const disconnectTrezorUserEnv = async () => {
// Clear the connection to the Trezor emulator so the test does not synchronize with it when not necessary.
await TrezorUserEnvLink.stopEmu();
await TrezorUserEnvLink.disconnect();
await TrezorUserEnvLink.stopBridge();
await TrezorUserEnvLink.disconnect();
};

export const wait = async (ms: number) => {
Expand Down

0 comments on commit a8cd2f4

Please sign in to comment.