1.5.0 • Published 9 months ago

jest-import-spy v1.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Enables inspecting imports in Jest tests

Usage

// Jest config
{
  "runtime": "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.5.0

9 months ago

1.4.0

9 months ago

1.3.0

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.0

4 years ago