enso/app/dashboard/e2e/dataLinkEditor.spec.ts
2024-07-26 17:47:59 +10:00

16 lines
356 B
TypeScript

/** @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 })
.openDataLinkModal()
.withNameInput(async (input) => {
await input.fill(DATA_LINK_NAME)
}),
)