// 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']);
});