mirror of
https://github.com/enso-org/enso.git
synced 2024-12-02 13:43:07 +03:00
9b7e3d0f16
- Closes #8179 # Important Notes - ⚠️ These tests are currently *not run* on any CI workflow. - There is some unused code for mocking the PM. This has been intentionally kept, as this may be useful in the future. Note that this may be useful for testing the dashboard, however the dashboard is currently only tested in cloud mode - that is, without the backend switcher, and with only the remote backend available. As such, currently it uses HTTP API mocks, and no PM mock.
10 lines
397 B
TypeScript
10 lines
397 B
TypeScript
import { expect, type Locator } from 'playwright/test'
|
|
|
|
/** Ensures that at least one of the elements that the Locator points to,
|
|
* is an attached and visible DOM node. */
|
|
export function toExist(locator: Locator) {
|
|
// Counter-intuitive, but correct:
|
|
// https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-be-visible
|
|
return expect(locator.first()).toBeVisible()
|
|
}
|