* cleanup(angular): add unit and e2e tests for extra reassurance After tests didn't fail but issues were introduced, add some extra tests to help catch breaking changes * chore(angular): increase timeout for e2e tests * fix(angular): mfe not installing webpack correctly Co-authored-by: Miroslav Jonaš <meeroslav@users.noreply.github.com>
8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
import { angularDevkitVersion } from './versions';
|
|
|
|
describe('Angular Versions', () => {
|
|
it('angular CLI package should use ~ package matching', () => {
|
|
expect(angularDevkitVersion[0]).toEqual('~');
|
|
});
|
|
});
|