UNPKG

@ledgerhq/live-common

Version:
13 lines 629 B
import expect from "expect"; import { pressBoth, pressUntilTextFound, waitFor, containsSubstringInEvent, getDelegateEvents, } from "../speculos"; import { DeviceLabels } from "../enum/DeviceLabels"; export async function delegateNear(delegatingAccount) { const events = await getDelegateEvents(delegatingAccount); const isProviderCorrect = containsSubstringInEvent(delegatingAccount.provider, events); expect(isProviderCorrect).toBeTruthy(); await pressBoth(); await waitFor(DeviceLabels.VIEW_ACTION); await pressUntilTextFound(DeviceLabels.SIGN); await pressBoth(); } //# sourceMappingURL=near.js.map