enso/app/ide-desktop/lib/dashboard/e2e/dataLinkEditor.spec.ts

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

16 lines
407 B
TypeScript
Raw Normal View History

/** @file Test the user settings tab. */
import * as test from '@playwright/test'
import * as actions from './actions'
const DATA_LINK_NAME = 'a data link'
test.test('data link editor', ({ page }) =>
actions.mockAllAndLogin({ page }).then(
async ({ pageActions }) =>
await pageActions.openDataLinkModal().withNameInput(async input => {
await input.fill(DATA_LINK_NAME)
})
)
)