mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-26 08:59:03 -06:00
26 lines
622 B
HTML
26 lines
622 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{title}}</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
{{if(options.superDomain)}}
|
|
document.domain = '{{superDomain}}';
|
|
{{/if}}
|
|
|
|
(function(parent) {
|
|
var Cypress = window.Cypress = parent.Cypress;
|
|
if (!Cypress) {
|
|
throw new Error("Tests cannot run without a reference to Cypress!");
|
|
}
|
|
})(window.opener || window.parent);
|
|
</script>
|
|
<script>{{privilegedChannel | safe}}</script>
|
|
<script>
|
|
window.Cypress.onSpecWindow(window, {{scripts | safe}});
|
|
</script>
|
|
</body>
|
|
</html>
|