mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 05:42:03 +03:00
12 lines
295 B
TypeScript
12 lines
295 B
TypeScript
|
import { type Page } from '@playwright/test'
|
||
|
|
||
|
// =================
|
||
|
// === goToGraph ===
|
||
|
// =================
|
||
|
|
||
|
/** Perform a successful login. */
|
||
|
export async function goToGraph(page: Page) {
|
||
|
await page.goto('/')
|
||
|
// Originally this clicked the play button but for now that is out of scope.
|
||
|
}
|