mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-19 05:29:59 -06:00
21 lines
515 B
HTML
21 lines
515 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, {{scripts | safe}});
|
|
})(window.opener || window.parent);
|
|
</script>
|
|
</body>
|
|
</html>
|