enso/app/dashboard/e2e/dataLinkEditor.spec.ts

16 lines
356 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 })
.openDataLinkModal()
2024-07-26 09:34:51 +03:00
.withNameInput(async (input) => {
await input.fill(DATA_LINK_NAME)
2024-07-26 09:34:51 +03:00
}),
)