import files

This commit is contained in:
Yann Autissier
2021-02-09 17:05:00 +01:00
parent f5c4576411
commit 44a6d37ba5
425 changed files with 23195 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
##
# TEST
.PHONY: test-assets
test-assets: bootstrap
$(call docker-compose-exec,$(DOCKER_SERVICE),yarn test)
## Run functional tests (make test-func TEST="S01-U1-find-product")
.PHONY: test-func-js
test-func-js: bootstrap ## Run functional tests (js)
ifdef TEST
$(call docker-compose-exec,$(DOCKER_SERVICE),yarn test:func -- --test tests/Functional/specs/$(TEST).js --env $(TESTENV))
else ifdef TESTSUITE
$(call docker-compose-exec,$(DOCKER_SERVICE),yarn test:func -- --tag $(TESTSUITE) --env $(TESTENV))
else
$(call docker-compose-exec,$(DOCKER_SERVICE),yarn test:func -- --env $(TESTENV))
endif