@@ -7,22 +7,22 @@ describe('useSettings - keyboardShortcuts', () => {
77
88 describe ( 'default value' , ( ) => {
99 it ( 'should default keyboardShortcuts to true' , async ( ) => {
10- const { useSettings } = await import ( '../../../app /composables/useSettings' )
10+ const { useSettings } = await import ( '~ /composables/useSettings' )
1111 const { settings } = useSettings ( )
1212 expect ( settings . value . keyboardShortcuts ) . toBe ( true )
1313 } )
1414 } )
1515
1616 describe ( 'useKeyboardShortcuts composable' , ( ) => {
1717 it ( 'should return true by default' , async ( ) => {
18- const { useKeyboardShortcuts } = await import ( '../../../app /composables/useSettings' )
18+ const { useKeyboardShortcuts } = await import ( '~ /composables/useSettings' )
1919 const enabled = useKeyboardShortcuts ( )
2020 expect ( enabled . value ) . toBe ( true )
2121 } )
2222
2323 it ( 'should reflect changes made via settings' , async ( ) => {
24- const { useSettings } = await import ( '../../../app /composables/useSettings' )
25- const { useKeyboardShortcuts } = await import ( '../../../app /composables/useSettings' )
24+ const { useSettings } = await import ( '~ /composables/useSettings' )
25+ const { useKeyboardShortcuts } = await import ( '~ /composables/useSettings' )
2626 const { settings } = useSettings ( )
2727 const enabled = useKeyboardShortcuts ( )
2828
@@ -34,8 +34,8 @@ describe('useSettings - keyboardShortcuts', () => {
3434 } )
3535
3636 it ( 'should be reactive' , async ( ) => {
37- const { useSettings } = await import ( '../../../app /composables/useSettings' )
38- const { useKeyboardShortcuts } = await import ( '../../../app /composables/useSettings' )
37+ const { useSettings } = await import ( '~ /composables/useSettings' )
38+ const { useKeyboardShortcuts } = await import ( '~ /composables/useSettings' )
3939 const { settings } = useSettings ( )
4040 const enabled = useKeyboardShortcuts ( )
4141
0 commit comments