Files
cypress/packages/server/lib/html/iframe.html
2017-05-09 13:51:45 -04:00

29 lines
699 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>{{title}}</title>
</head>
<body>
<script type="text/javascript">
document.domain = '{{domain}}';
(function(parent) {
var Cypress = window.Cypress = parent.Cypress;
if (!Cypress) {
throw new Error("Tests cannot run without a reference to Cypress!");
}
return Cypress.onSpecWindow(window);
})(window.opener || window.parent);
</script>
{{#each javascripts}}
<script type="text/javascript" src="{{{this}}}"></script>
{{/each}}
{{#each specs}}
<script type="text/javascript" src="{{{this}}}"></script>
{{/each}}
</body>
</html>