style: fix the type-import sort position in pet-gallery.test.ts
perfectionist/sort-named-imports orders 'type GatewayRequest' by its name, so it belongs before loadPetGallery (eslint error, not warning).
This commit is contained in:
parent
b0089e8bfa
commit
e1843c7d08
|
|
@ -1,7 +1,7 @@
|
|||
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest'
|
||||
|
||||
import { $petInfo, setPetInfo } from './pet'
|
||||
import { $petGallery, adoptPet, loadPetGallery, type GatewayRequest, resetPetGallery } from './pet-gallery'
|
||||
import { $petGallery, adoptPet, type GatewayRequest, loadPetGallery, resetPetGallery } from './pet-gallery'
|
||||
|
||||
function localGallery() {
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in New Issue