mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-05 06:40:56 -06:00
Co-authored-by: Jessica Sachs <jess@jessicasachs.io> Co-authored-by: Barthélémy Ledoux <bart@cypress.io> Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Zach Bloomquist <github@chary.us> Co-authored-by: Dmitriy Kovalenko <dmtr.kovalenko@outlook.com> Co-authored-by: ElevateBart <ledouxb@gmail.com> Co-authored-by: Ben Kucera <14625260+Bkucera@users.noreply.github.com>
21 lines
521 B
HTML
21 lines
521 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>
|