refactor: mask cuesheet presets

This commit is contained in:
Carlos Valente
2026-02-19 16:01:55 +01:00
committed by Carlos Valente
parent 1c81b3a23c
commit 6268e327b9
3 changed files with 54 additions and 1 deletions
@@ -220,6 +220,8 @@ test.describe('Sharing from cuesheet', () => {
// Verify that the title is visible and editable
await expect(page.getByTestId('cuesheet-event').getByRole('cell', { name: 'title' })).toBeVisible();
await page.getByTestId('cuesheet-event').getByTestId('cuesheet-editor-title').click();
await expect(page.getByTestId('cuesheet-event').getByTestId('cuesheet-editor-title').locator('input')).toBeVisible();
// other elements are not there
await expect(page.getByRole('cell', { name: 'Duration' })).toBeHidden();