generator-polymer-init-vaadin-elements-app
Version:
Progressive web application template with Polymer App Toolbox and Vaadin Elements
26 lines (22 loc) • 659 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>Tests</title>
<script src="../bower_components/web-component-tester/browser.js"></script>
</head>
<body>
<script>
WCT._config.environmentScripts.push('webcomponentsjs/webcomponents-lite.js');
WCT.loadSuites([
'employee-list.html',
'employee-new.html'
]
.reduce(function(suites, suite) {
return suites.concat([suite, `${suite}?wc-shadydom=true`]);
}, [])
);
</script>
</body>
</html>