Move test and add to runner.

This commit is contained in:
Kevin Schaaf 2016-02-04 09:55:18 -08:00
parent d69ee9a35e
commit aeb44de787
2 changed files with 19 additions and 14 deletions

View File

@ -66,6 +66,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
'unit/templatizer.html',
'unit/dom-repeat.html',
'unit/dom-if.html',
'unit/dom-template.html',
'unit/dom-bind.html',
'unit/script-after-import-in-head.html',
'unit/globals.html'

View File

@ -11,9 +11,9 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<html>
<head>
<meta charset="utf-8">
<script src="../../../../webcomponentsjs/webcomponents-lite.js"></script>
<script src="../../../../web-component-tester/browser.js"></script>
<link rel="import" href="../../../polymer.html">
<script src="../../../webcomponentsjs/webcomponents-lite.js"></script>
<script src="../../../web-component-tester/browser.js"></script>
<link rel="import" href="../../polymer.html">
</head>
<body>
@ -28,6 +28,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
</template>
</template>
<script>
HTMLImports.whenReady(function() {
Polymer({
is: 'test-dom-template',
@ -44,6 +46,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
this.value = tmpl.root.textContent.trim();
}
});
});
</script>
</dom-module>