Skip to content
This repository was archived by the owner on Mar 13, 2018. It is now read-only.

Commit 505ebb2

Browse files
committed
getExpression is evaluated too early on platforms with polyfill HTMLImports
1 parent ff38c08 commit 505ebb2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/html/mdv-tests/polymer-expressions-tests.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ suite('PolymerExpressions', function() {
1010
var testDiv, originalConsoleError, errors;
1111

1212

13-
var getExpression = PolymerExpressions.getExpression;
13+
var getExpression;
14+
15+
suiteSetup(function() {
16+
getExpression = PolymerExpressions.getExpression;
17+
});
1418

1519
function clearAllTemplates(node) {
1620
if (node instanceof HTMLTemplateElement || node.iterator_)

0 commit comments

Comments
 (0)