nx/packages/angular/src/utils/versions.spec.ts
Colum Ferry 2f2ede5ca5
cleanup(angular): add unit and e2e tests for extra reassurance (#6626)
* 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>
2021-10-06 14:15:39 +01:00

8 lines
215 B
TypeScript

import { angularDevkitVersion } from './versions';
describe('Angular Versions', () => {
it('angular CLI package should use ~ package matching', () => {
expect(angularDevkitVersion[0]).toEqual('~');
});
});