Skip to content

Commit

Permalink
Shop 3.0 lints clean now. (#331)
Browse files Browse the repository at this point in the history
* Shop 3.0 lints clean now.
* Lint, then build, to prevent linting build output.
  • Loading branch information
rictic authored and usergenic committed Jun 24, 2019
1 parent 617ed77 commit 1cc9146
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions packages/cli/src/test/integration/integration_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -585,12 +585,8 @@ suite('polymer shop', function() {
suiteSetup(async function() {
// Building takes a few minutes.
this.timeout(10 * 60 * 1000);
await Promise.all([
// Does not lint clean at the moment.
// TODO: https://github.com/Polymer/tools/issues/274
// runCommand(binPath, ['lint', '--rules=polymer-3'], {cwd: dir}),
runCommand(binPath, ['build'], {cwd: dir}),
]);
await runCommand(binPath, ['lint'], { cwd: dir });
await runCommand(binPath, ['build'], { cwd: dir });
const config =
ProjectConfig.loadConfigFromFile(path.join(dir, 'polymer.json'));
if (config == null) {
Expand Down

0 comments on commit 1cc9146

Please sign in to comment.