Remove tune density walkthrough step (#5389)

This commit is contained in:
Neil 2026-06-15 01:20:04 -07:00 committed by GitHub
parent 97dce8b1d4
commit 1f2a50fe69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 14 deletions

View File

@ -71,15 +71,14 @@ describe('contextual tour definitions', () => {
expect(tour?.steps[1]?.secondaryAction).toBeUndefined()
})
it('points the workspace board tour at the board center, done lane, and settings', () => {
it('points the workspace board tour at the board center and done lane', () => {
const tour = CONTEXTUAL_TOURS.find((entry) => entry.id === 'workspace-board') as
| ContextualTour
| undefined
expect(tour?.steps.map((step) => step.title)).toEqual([
'Plan work on the board',
'Move work through lanes',
'Tune density'
'Move work through lanes'
])
expect(tour?.steps[0]).toMatchObject({
targetSelector: '[data-contextual-tour-target="workspace-board-center"]',
@ -91,11 +90,6 @@ describe('contextual tour definitions', () => {
targetSelector:
'[data-contextual-tour-target="workspace-board-done-lane"], [data-contextual-tour-target="workspace-board-lanes"]'
})
expect(tour?.steps[2]).toMatchObject({
body: 'Use board settings to switch between detailed and compact cards.',
targetSelector:
'[data-contextual-tour-target="workspace-board-settings"], [data-contextual-tour-target="workspace-board-lanes"]'
})
})
it('orders the browser tour as grab, annotate, then import cookies', () => {

View File

@ -66,12 +66,6 @@ export const CONTEXTUAL_TOURS = [
body: 'Drag workspaces between lanes as their status changes.',
targetSelector:
'[data-contextual-tour-target="workspace-board-done-lane"], [data-contextual-tour-target="workspace-board-lanes"]'
},
{
title: 'Tune density',
body: 'Use board settings to switch between detailed and compact cards.',
targetSelector:
'[data-contextual-tour-target="workspace-board-settings"], [data-contextual-tour-target="workspace-board-lanes"]'
}
]
},