Skip to content

Commit

Permalink
ci: disable lint check in the update test
Browse files Browse the repository at this point in the history
This is currently failing with FW 11.0.0-next.4 due to a migration using double quotes instead of single quotes. This is
for a beta release and the impact is relatively minor, so we've decided to just disable the test for now.
  • Loading branch information
dgp1130 committed Sep 30, 2020
1 parent 557c51e commit 4271129
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/legacy-cli/e2e/tests/update/update-7.0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ export default async function() {
// Run CLI commands.
await ng('generate', 'component', 'my-comp');
await ng('test', '--watch=false');
await ng('lint');
// TODO: Re-enable after v11.0.0-next.4 release.
// await ng('lint');
await ng('e2e');
await ng('e2e', '--prod');

Expand Down

0 comments on commit 4271129

Please sign in to comment.