1.3.0 • Published 2 years ago

jest-import-spy v1.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Enables inspecting imports in Jest tests

Usage

// Jest config
{
  "moduleLoader": "jest-import-spy"
}
import {collectImports} from 'jest-import-spy';

test('imports', () => {
  const imports = collectImports(() => {
    jest.isolateModules(() => {
      require('./src');
    });
  });
  expect(imports).toEqual(['./src/index.js', './src/utils.js', 'lodash']);
});
1.3.0

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago