enso/app/gui2/e2e/graphRenderNodes.spec.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
365 B
TypeScript
Raw Normal View History

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))
})