diff --git a/makefile b/makefile index 8274826..2d3c89f 100644 --- a/makefile +++ b/makefile @@ -1,6 +1,6 @@ # Makefile for building the web frontend -.PHONY: all webfrontend-build clean +.PHONY: all webfrontend-build webfrontend-test clean # Default target all: webfrontend-build @@ -10,6 +10,9 @@ webfrontend-build: yarn install # Install dependencies yarn build # Build the project +webfrontend-test: + yarn test + # Clean target clean: rm -rf build # Adjust according to your project's build output