@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
13 lines • 629 B
JavaScript
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