mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-09 00:30:16 -06:00
runner: prefix output files with cypress_
This commit is contained in:
@@ -4,8 +4,8 @@ module.exports = function setZunderConfig (zunder) {
|
||||
coffeeCompiler: require('@packages/coffee'),
|
||||
prodDir: 'dist',
|
||||
resolutions: ['react', 'react-dom', 'mobx', 'mobx-react', 'lodash'],
|
||||
scriptName: 'runner.js',
|
||||
stylesheetName: 'runner.css',
|
||||
scriptName: 'cypress_runner.js',
|
||||
stylesheetName: 'cypress_runner.css',
|
||||
staticGlobs: {
|
||||
'static/**': '',
|
||||
'node_modules/font-awesome/fonts/**': '/fonts',
|
||||
|
||||
@@ -7,14 +7,14 @@
|
||||
|
||||
<link href="/__cypress/static/favicon.ico" rel="icon">
|
||||
|
||||
<link rel="stylesheet" href="/__cypress/runner/runner.css">
|
||||
<link rel="stylesheet" href="/__cypress/runner/cypress_runner.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
||||
<script type="text/javascript" src="/__cypress/socket.io.js"></script>
|
||||
<script type="text/javascript" src="/__cypress/driver/driver.js"></script>
|
||||
<script type="text/javascript" src="/__cypress/runner/runner.js"></script>
|
||||
<script type="text/javascript" src="/__cypress/runner/cypress_runner.js"></script>
|
||||
<script type="text/javascript">
|
||||
setTimeout(function(){
|
||||
Runner.start(document.getElementById('app'), {{{config}}})
|
||||
|
||||
Reference in New Issue
Block a user