Skip to content

Commit

Permalink
add a (failing) test case for https://github.com/Polymer/polymer-cli/…
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Lukashov committed Dec 8, 2017
1 parent 32826bd commit ce4dbc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/analyzer_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ suite('Analyzer', () => {

let errorCounter = 0;
const errorListener = (err: Error) => {
assert.equal(err.message, '1 error(s) occurred during build.');
assert.equal(err.message, '2 error(s) occurred during build.');
errorCounter++;
if (errorCounter >= 2) {
done();
Expand Down
3 changes: 2 additions & 1 deletion test-fixtures/bad-src-import/src/a.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
<link rel="import" href="../dependencies/dep-1.html">
<link rel="import" href="broken-path/to-missing-file-in-src-directory.html">
<link rel="import" href="broken-path/to-missing-file-in-src-directory.html">
<link rel="import" href="broken-path/to-another-missing-file-in-src-directory.html">

0 comments on commit ce4dbc8

Please sign in to comment.