change(ui): fix jest config
This commit is contained in:
parent
8f409a8433
commit
b8c42914b4
2 changed files with 4 additions and 4 deletions
|
|
@ -4,7 +4,7 @@ module.exports = {
|
|||
rootDir: './',
|
||||
testEnvironment: 'node',
|
||||
moduleNameMapper: {
|
||||
'^Types/Session/(.+)$': '<rootDir>/app/types/session/$1',
|
||||
'^Types/session/(.+)$': '<rootDir>/app/types/session/$1',
|
||||
'^App/(.+)$': '<rootDir>/app/$1',
|
||||
},
|
||||
transform: {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import { describe, expect, test } from '@jest/globals';
|
||||
|
||||
import Session from 'Types/Session';
|
||||
import { Click, Location } from 'Types/Session/event';
|
||||
import Issue from 'Types/Session/issue';
|
||||
import Session from 'Types/session';
|
||||
import { Click, Location } from 'Types/session/event';
|
||||
import Issue from 'Types/session/issue';
|
||||
import { session } from './mocks/sessionResponse';
|
||||
import { issues, events } from "./mocks/sessionData";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue