Skip to content

Commit c13a6b8

Browse files
committed
Update tests
1 parent 1ac68e2 commit c13a6b8

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

make/drupal.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ drush-sync-db: ## Sync database
152152
$(call drush,sql-drop --quiet -y)
153153
ifeq ($(DUMP_SQL_EXISTS),yes)
154154
$(call step,Import local SQL dump...)
155-
$(call drush,sql-query --file=${DOCKER_PROJECT_ROOT}/$(DUMP_SQL_FILENAME) && echo 'SQL dump imported')
155+
$(call drush,sql-query --file=$(DOCKER_PROJECT_ROOT)/$(DUMP_SQL_FILENAME) && echo 'SQL dump imported')
156156
else
157157
ifeq ($(SYNC_FROM_REMOTE),yes)
158158
$(call step,Sync database from @$(DRUPAL_SYNC_SOURCE)...)

tests/outputs/js-install-npm.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
js-install JS_PACKAGE_MANAGER=npm PACKAGE_JSON_PATH=custom PACKAGE_JSON_EXISTS=yes NODE_VERSION=20
1+
js-install JS_PACKAGE_MANAGER=npm PACKAGE_JSON_PATH=custom PACKAGE_JSON_EXISTS=yes NODE_VERSION=20 NVM=yes
22
---
33
printf "\n⭐ \033[0;33mRun 'npm install --no-audit --no-fund --engine-strict true' with Node 20...\n\033[0m\n"
44
. __HOME__/.nvm/nvm.sh && (nvm which 20 > /dev/null 2>&1 || nvm install 20) && nvm exec 20 npm --prefix custom install --no-audit --no-fund --engine-strict true

tests/outputs/js-install-yarn.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
js-install PACKAGE_JSON_PATH=custom PACKAGE_JSON_EXISTS=yes NODE_VERSION=20
1+
js-install PACKAGE_JSON_PATH=custom PACKAGE_JSON_EXISTS=yes NODE_VERSION=20 NVM=yes
22
---
33
printf "\n⭐ \033[0;33mRun 'yarn install --frozen-lockfile' with Node 20...\n\033[0m\n"
44
. __HOME__/.nvm/nvm.sh && (nvm which 20 > /dev/null 2>&1 || nvm install 20) && nvm exec 20 yarn --cwd custom install --frozen-lockfile
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
js-install INSTALLED_NODE_VERSION=18 NODE_VERSION=18 PACKAGE_JSON_EXISTS=yes
1+
js-install INSTALLED_NODE_VERSION=18 NODE_VERSION=18 PACKAGE_JSON_EXISTS=yes NVM=yes
22
---
33
printf "\n⭐ \033[0;33mRun 'yarn install --frozen-lockfile' with Node 18...\n\033[0m\n"
44
. __HOME__/.nvm/nvm.sh && (nvm which 18 > /dev/null 2>&1 || nvm install 18) && nvm exec 18 yarn --cwd . install --frozen-lockfile

0 commit comments

Comments
 (0)