Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ test:
build-backend:
pnpm nx run-many --output-style=static --target=build --projects=shared-dto,rest-contracts

build-auth:
pnpm nx run-many --output-style=static --target=build --projects=auth-client

# Run backend tests in verbose mode
test-verbose: build-backend
pnpm --filter backend run test:verbose
Expand All @@ -43,7 +46,7 @@ test-e2e: build-backend
pnpm --filter backend test:e2e

# Run module-specific backend tests
test-auth: build-backend
test-auth: build-backend build-auth
pnpm --filter backend test:auth

test-posts: build-backend
Expand Down
Loading