Skip to content
Snippets Groups Projects

Merging develop into main

Merged jurgenhaas requested to merge develop into main
4 files
+ 30
1
Compare changes
  • Side-by-side
  • Inline
Files
4
  • 70a5687a
    docker/cypress#1 Update to Cypress 11.1.0 and provide default cypress config files · 70a5687a
    jurgenhaas authored
+ 18
1
@@ -186,7 +186,7 @@ class Handler extends BaseHandler {
],
'cypress' => [
'enable' => $this->env->receiveGlobal('CYPRESS', 'Cypress', '0'),
'version' => '10.8.0',
'version' => '11.1.0',
],
];
}
@@ -557,6 +557,23 @@ class Handler extends BaseHandler {
'dest' => $projectRoot . '/tests',
],
];
if ($this->config->readValue(['cypress', 'enable'])) {
$files['cypress.config.js'] = [
'source' => 'tests/',
'dest' => $projectRoot . '/tests',
'add2git' => TRUE,
];
$files['commands.js'] = [
'source' => 'tests/cypress/support/',
'dest' => $projectRoot . '/tests/cypress/support',
'add2git' => TRUE,
];
$files['e2e.js'] = [
'source' => 'tests/cypress/support/',
'dest' => $projectRoot . '/tests/cypress/support',
'add2git' => TRUE,
];
}
if (getenv('LAKEDROPS_BUILD_NG') === 'yes') {
if ($this->config->readValue(['backup', 'enable'])) {
$files['config.yaml'] = [
Loading