From 0a461d3c4fa0da7efb80e652c980f58938a12273 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Mon, 16 Feb 2026 00:08:04 +0700 Subject: [PATCH] feat(nx): run ui test --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 777dfd6aa..55677e056 100644 --- a/package.json +++ b/package.json @@ -43,9 +43,10 @@ "start:production": "npm run database:migrate && npm run database:seed && node main", "start:server": "nx run api:copy-assets && nx run api:serve --watch", "start:storybook": "nx run ui:storybook", - "test": "npm run test:api && npm run test:common", + "test": "npm run test:api && npm run test:common && npm run test:ui", "test:api": "npx dotenv-cli -e .env.example -- nx test api", "test:common": "npx dotenv-cli -e .env.example -- nx test common", + "test:ui": "npx dotenv-cli -e .env.example -- nx test ui", "test:single": "nx run api:test --test-file object.helper.spec.ts", "ts-node": "ts-node", "update": "nx migrate latest",