Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jest error Could not locate module .... mapped as:

I try use Jest with VueJS and Quasar framework. I write simple test:

import { GetUserDictionaryDataComponent, Component } from '@/pages/configurations/components/';

describe('GetUserDictionaryDataComponent', () => {
  it('should get correct type', () => {
    const component = new GetUserDictionaryDataComponent(undefined);
    expect(component.getComponentType()).toBe(Component.LEAF);
  });
});

But It not work correctly. When I try run my test, I get error:

Test suite failed to run

    Configuration error:

    Could not locate module @/pages/configurations/components/ mapped as:
    /home/user/git/my_project/client/src/pages/configurations/components/.

    Please check your configuration for these entries:
    {
      "moduleNameMapper": {
        "/^@\/(.*)$/": "/home/user/git/my_project/client/src/$1"
      },
      "resolver": null
    }

    > 1 | import { GetUserDictionaryDataComponent, Component } from '@/pages/configurations/components/';
        | ^
      2 | 
      3 | describe('GetUserDictionaryDataComponent', () => {
      4 |   it('should get correct type', () => {

      at createNoMappedModuleFoundError (node_modules/@jest/core/node_modules/jest-resolve/build/index.js:472:17)
      at Object.<anonymous> (src/tests/pages/configurations/components/GetUserDictionaryDataComponent.spec.js:1:1)

But, I don't uderstand, why I get this error. I checked, path /home/user/git/my_project/client/src/pages/configurations/components/ is correct, my classes there.

like image 827
All_Safe Avatar asked Aug 01 '19 11:08

All_Safe


3 Answers

Camel case Important

import Component from @/pages/configurations/components/Component;

like image 120
Rostyslav Sipakov Avatar answered Oct 18 '22 23:10

Rostyslav Sipakov


For me it was the simplest typo. I was using

"\\.(css|less)$": "<rootDir>/__mocks__/styleMocks.js" but my file was named styleMock.js

Hope this helps anyone

like image 8
Pierre Ferry Avatar answered Oct 19 '22 01:10

Pierre Ferry


Keep <rootDir> as is if you just want to point to you path where package.json is.

I thought I had a similar issue with my webpack. For me I did not finish reading the Jest docs and thought that <rootDir> was some sort of placeholder for my root directory path. It is not...

like image 4
Duncan Brain Avatar answered Oct 19 '22 01:10

Duncan Brain