From f2b100c4b389a3c6a0943a7824fd22c0b70c8be6 Mon Sep 17 00:00:00 2001 From: aparnajyothi-y <147696841+aparnajyothi-y@users.noreply.github.com> Date: Tue, 29 Oct 2024 17:55:11 +0530 Subject: [PATCH] Update makefile --- makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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