mirror of
https://github.com/enso-org/enso.git
synced 2024-12-11 12:04:35 +03:00
16 lines
407 B
TypeScript
16 lines
407 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 }).then(
|
||
|
async ({ pageActions }) =>
|
||
|
await pageActions.openDataLinkModal().withNameInput(async input => {
|
||
|
await input.fill(DATA_LINK_NAME)
|
||
|
})
|
||
|
)
|
||
|
)
|