Skip to content
Snippets Groups Projects
Commit 4af24085 authored by Rajab Natshah's avatar Rajab Natshah
Browse files

Issue #3120794: Update [Drupal core] from 8.8.2 to 8.8.4 ( ~8.8.0 )

parent af463568
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,7 @@ install: ...@@ -125,7 +125,7 @@ install:
- drush pm-enable vlplb --yes - drush pm-enable vlplb --yes
- drush config-set system.performance css.preprocess 0 --yes - drush config-set system.performance css.preprocess 0 --yes
- drush config-set system.performance js.preprocess 0 --yes - drush config-set system.performance js.preprocess 0 --yes
# - drush config-set system.logging error_level all --yes - drush config-set system.logging error_level all --yes
- drush cr - drush cr
before_script: before_script:
- drush runserver --default-server=builtin 8080 &>/dev/null & - drush runserver --default-server=builtin 8080 &>/dev/null &
......
...@@ -138,7 +138,7 @@ class VarbaseContext extends RawDrupalContext implements SnippetAcceptingContext ...@@ -138,7 +138,7 @@ class VarbaseContext extends RawDrupalContext implements SnippetAcceptingContext
* @When /^(?:|I )wait (?:|for )(?P<seconds>\d+) second(?:|s)$/ * @When /^(?:|I )wait (?:|for )(?P<seconds>\d+) second(?:|s)$/
* @When /^(?:|I )wait (?:|for )(?P<seconds>\d+)s$/ * @When /^(?:|I )wait (?:|for )(?P<seconds>\d+)s$/
*/ */
public function iWaitForSeconds($seconds) { public function iWaitForSeconds($seconds = 1) {
$this->getSession()->wait($seconds * 1000); $this->getSession()->wait($seconds * 1000);
} }
...@@ -156,7 +156,7 @@ class VarbaseContext extends RawDrupalContext implements SnippetAcceptingContext ...@@ -156,7 +156,7 @@ class VarbaseContext extends RawDrupalContext implements SnippetAcceptingContext
* @When /^(?:|I )wait (?:|for )(?P<minutes>\d+) minute(?:|s)$/ * @When /^(?:|I )wait (?:|for )(?P<minutes>\d+) minute(?:|s)$/
* @When /^(?:|I )wait (?:|for )(?P<minutes>\d+)m$/ * @When /^(?:|I )wait (?:|for )(?P<minutes>\d+)m$/
*/ */
public function iWaitForMinutes($minutes) { public function iWaitForMinutes($minutes = 1) {
$this->getSession()->wait($minutes * 60 * 1000); $this->getSession()->wait($minutes * 60 * 1000);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment