mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-12 02:00:06 -06:00
Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Zachary Williams <ZachJW34@gmail.com>
25 lines
776 B
HTML
25 lines
776 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{projectName}}</title>
|
|
|
|
<link href="/{{namespace}}/runner/favicon.ico?v2" rel="icon">
|
|
|
|
<link rel="stylesheet" href="/{{namespace}}/runner/cypress_runner.css">
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="text/javascript" src="/{{namespace}}/runner/cypress_runner.js"></script>
|
|
<script type="text/javascript">
|
|
// set a global so we know the 'top' window
|
|
window.__Cypress__ = true
|
|
|
|
setTimeout(function(){
|
|
Runner.start(document.getElementById('app'), "{{base64Config | safe}}")
|
|
}, 0)
|
|
</script>
|
|
</body>
|
|
</html>
|