Skip to content

Commit

Permalink
test(@angular-devkit/build-angular): add karma@5.2 E2E test
Browse files Browse the repository at this point in the history
This test ensures that karma 5.2.x will continue to function in addition to the new 6.x default.
  • Loading branch information
clydin authored and alan-agius4 committed Jan 13, 2021
1 parent eba0973 commit 207808d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/legacy-cli/e2e/tests/test/test-karma-5.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { ng } from '../../utils/process';
import { installPackage } from '../../utils/packages';

/**
* Ensure karma 5.2 continues to function
*/
export default async function () {
await installPackage('karma@5.2');

await ng('test', '--watch=false');
}

0 comments on commit 207808d

Please sign in to comment.