mirror of
https://github.com/enso-org/enso.git
synced 2024-12-20 00:01:37 +03:00
11 lines
365 B
TypeScript
11 lines
365 B
TypeScript
|
import { test } from '@playwright/test'
|
||
|
import * as actions from './actions'
|
||
|
import * as customExpect from './customExpect'
|
||
|
import * as locate from './locate'
|
||
|
|
||
|
test('graph can open and render nodes', async ({ page }) => {
|
||
|
await actions.goToGraph(page)
|
||
|
await customExpect.toExist(locate.graphEditor(page))
|
||
|
await customExpect.toExist(locate.graphNode(page))
|
||
|
})
|