Skip to content

Commit 2072386

Browse files
committed
test: update default accent color in tests
1 parent e86c3b2 commit 2072386

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/nuxt/composables/use-command-palette-commands.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ describe('useCommandPaletteCommands', () => {
165165
expect(flatCommands.value.find(command => command.id === 'theme-system')?.active).toBe(true)
166166
expect(flatCommands.value.find(command => command.id === 'theme-dark')).toBeTruthy()
167167
expect(flatCommands.value.find(command => command.id === 'accent-colors')?.badge).toBe(
168-
'Neutral',
168+
'Sky',
169169
)
170170
expect(flatCommands.value.find(command => command.id === 'background-themes')?.badge).toBe(
171171
'Neutral',
@@ -441,7 +441,7 @@ describe('useCommandPaletteCommands', () => {
441441
})
442442

443443
expect(groupedCommands.value.map(group => group.id)).toEqual(['settings'])
444-
expect(flatCommands.value.find(command => command.id === 'accent-color:neutral')?.active).toBe(
444+
expect(flatCommands.value.find(command => command.id === 'accent-color:sky')?.active).toBe(
445445
true,
446446
)
447447
expect(flatCommands.value.find(command => command.id === 'accent-color:coral')).toBeTruthy()

0 commit comments

Comments
 (0)