blob: 14ce1a16a9d5d475ce7151d09f5ebf60e6a949fa [file]
describe('dependencies', () => {
it('should fail to resolve test-a since it has not been specified as a fine-grained direct dependency',
() => {
try {
require('@gregmagolan/test-a');
fail('@gregmagolan/test-a should not be resolved');
} catch (err) {
expect(err.code).toBe('MODULE_NOT_FOUND');
}
});
});