本文整理汇总了TypeScript中@angular/cdk/testing/e2e.expectLocation函数的典型用法代码示例。如果您正苦于以下问题:TypeScript expectLocation函数的具体用法?TypeScript expectLocation怎么用?TypeScript expectLocation使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了expectLocation函数的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('should align menu to top left of trigger when "below" and "above"', async () => {
await page.combinedTrigger().click();
const trigger = await page.combinedTrigger().getLocation();
// trigger.x (left corner) - 52px (menu left of trigger) = expected menu.x
// trigger.y (top corner) - 44px (menu above trigger) = expected menu.y
await expectLocation(page.combinedMenu(), {x: trigger.x - 52, y: trigger.y - 44});
});