mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 18:01:38 +03:00
b83c5a15eb
- Close https://github.com/enso-org/cloud-v2/issues/1604 - Add ability to track backend calls - Remove inconsistent integration test code - Add skeleton classes for settings pages # Important Notes None
14 lines
342 B
TypeScript
14 lines
342 B
TypeScript
/** @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)
|
|
}))
|