enso/app/gui/integration-test/dashboard/dataLinkEditor.spec.ts

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

14 lines
342 B
TypeScript
Raw Normal View History

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