Client - minor refactor
This commit is contained in:
25
fittrackee_client/tests/unit/utils/fixtures.ts
Normal file
25
fittrackee_client/tests/unit/utils/fixtures.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { ISport } from '@/types/sports'
|
||||
|
||||
export const sports: ISport[] = [
|
||||
{
|
||||
has_workouts: false,
|
||||
id: 1,
|
||||
img: '/img/sports/cycling-sport.png',
|
||||
is_active: true,
|
||||
label: 'Cycling (Sport)',
|
||||
},
|
||||
{
|
||||
has_workouts: false,
|
||||
id: 2,
|
||||
img: '/img/sports/cycling-transport.png',
|
||||
is_active: false,
|
||||
label: 'Cycling (Transport)',
|
||||
},
|
||||
{
|
||||
has_workouts: true,
|
||||
id: 3,
|
||||
img: '/img/sports/hiking.png',
|
||||
is_active: true,
|
||||
label: 'Hiking',
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user