feat(ivy): ngcc - turn on UMD processing (#25445)

PR Close #25445
This commit is contained in:
Pete Bacon Darwin
2019-04-28 20:48:35 +01:00
committed by Jason Aden
parent f6aa60c03c
commit f4655ea98a
5 changed files with 23 additions and 10 deletions

View File

@ -106,10 +106,10 @@ describe('DependencyResolver', () => {
]);
});
it('should error if the entry point does not have either the esm5 nor esm2015 formats', () => {
it('should error if the entry point does not have a suitable format', () => {
expect(() => resolver.sortEntryPointsByDependency([
{ path: '/first', packageJson: {}, compiledByAngular: true } as EntryPoint
])).toThrowError(`There is no format with import statements in '/first' entry-point.`);
])).toThrowError(`There is no appropriate source code format in '/first' entry-point.`);
});
it('should capture any dependencies that were ignored', () => {