From 18b74a582c72584ec321a671080fd5c3bb63e49b Mon Sep 17 00:00:00 2001 From: Coline Date: Thu, 10 Mar 2022 14:53:45 +0100 Subject: [PATCH] fix: Makefile .gitignore into functional tests --- tests/functional/.gitignore | 4 ++++ tests/functional/Makefile | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 tests/functional/.gitignore create mode 100644 tests/functional/Makefile diff --git a/tests/functional/.gitignore b/tests/functional/.gitignore new file mode 100644 index 0000000..826d3f0 --- /dev/null +++ b/tests/functional/.gitignore @@ -0,0 +1,4 @@ +/node_modules +/snapshots-tmp +/elfs +/lib \ No newline at end of file diff --git a/tests/functional/Makefile b/tests/functional/Makefile new file mode 100644 index 0000000..82d7706 --- /dev/null +++ b/tests/functional/Makefile @@ -0,0 +1,8 @@ +MAKEFLAGS += --no-print-directory + +all: + ./build_local_test_elfs.sh + yarn install + yarn test + +.PHONY: all \ No newline at end of file