Skip to content

Commit

Permalink
Remove filter because it may not be needed.
Browse files Browse the repository at this point in the history
  • Loading branch information
rictic committed May 3, 2018
1 parent d9f9164 commit 8df99a8
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/cli/src/test/integration/integration_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,8 @@ suite('integration tests', function() {
if (config == null) {
throw new Error('Failed to load shop\'s polymer.json');
}
// Can remove this filter after
// https://github.com/Polymer/polymer-cli/issues/1000 is fixed.
const dirs =
config.builds.filter((b) => b.name !== 'es5-bundled')
.map((b) => path.join(dir, 'build', b.name || 'default'));
const dirs = config.builds.map(
(b) => path.join(dir, 'build', b.name || 'default'));
// Ideally this would be multiple independent tests, but `polymer
// build` takes a really long time, and we can also get a bit better
// performance by running these browser tests in parallel.
Expand Down

0 comments on commit 8df99a8

Please sign in to comment.