Files
cypress/packages/runner/static/index.html
T
Brian Mann 91a4477ad0 replace handlebars with squirrelly (#5521)
* WIP: rip out handlebars and implement with squirrelly

- handle caching ourselves
- TODO: add tests, make sure escaping and all that jazz works

* fixes squirrelly template handling

* only fire mocha events when in run mode

* add unit tests for template engine rendering + caching
2019-10-30 02:21:53 -04:00

25 lines
761 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="/__cypress/static/favicon.ico" rel="icon">
<link rel="stylesheet" href="/__cypress/runner/cypress_runner.css">
</head>
<body>
<div id="app"></div>
<script type="text/javascript" src="/__cypress/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>