Skip to content

Commit

Permalink
Fix Jest config swc paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Feb 28, 2024
1 parent a9dbbae commit d8c069c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions frontend/config/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ module.exports = {
'@hooks/*': ['hooks/*'],
'@libs/*': ['libs/*'],
'@pages/*': ['pages/*'],
'@store': ['store/index.ts'],
'@store/*': ['store/*'],
'@utils/*': ['utils/*']
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { isCypress } from '@utils/isCypress'
import { MissionAction } from 'domain/types/missionAction'

import { MissionAction } from '../../../../domain/types/missionAction'

import type { MissionActionFormValues } from './types'
import type { LegacyControlUnit } from '../../../../domain/types/legacyControlUnit'
import type { Option, Undefine } from '@mtes-mct/monitor-ui'
import type { LegacyControlUnit } from 'domain/types/legacyControlUnit'

export const INITIAL_MISSION_CONTROL_UNIT: LegacyControlUnit.LegacyControlUnitDraft = {
administration: undefined,
Expand Down

0 comments on commit d8c069c

Please sign in to comment.