Skip to content

Commit a50114d

Browse files
committed
print with colors
1 parent f0390af commit a50114d

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/scaffold/snapshots/aiken_meshjs_nix.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ build: build-on-chain build-off-chain
3232
# Build the on-chain blueprint first (consumers read ../blueprint/plutus.json),
3333
# then run each component's tests in role order.
3434
test: build-on-chain test-on-chain test-off-chain
35-
@echo "All tests passed."
35+
@echo '{{BOLD + BLACK + BG_GREEN}}All tests passed {{NORMAL}}'
3636
3737
clean:
3838
just -f on-chain/Justfile clean

src/scaffold/snapshots/aiken_meshjs_yaci.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ build: build-on-chain build-off-chain
3636
# Build the on-chain blueprint first (consumers read ../blueprint/plutus.json),
3737
# then run each component's tests in role order.
3838
test: build-on-chain test-on-chain test-off-chain test-integration
39-
@echo "All tests passed."
39+
@echo '{{BOLD + BLACK + BG_GREEN}}All tests passed {{NORMAL}}'
4040
4141
clean:
4242
just -f on-chain/Justfile clean

src/scaffold/snapshots/aiken_only.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ build: build-on-chain
2525
# Build the on-chain blueprint first (consumers read ../blueprint/plutus.json),
2626
# then run each component's tests in role order.
2727
test: build-on-chain test-on-chain
28-
@echo "All tests passed."
28+
@echo '{{BOLD + BLACK + BG_GREEN}}All tests passed {{NORMAL}}'
2929
3030
clean:
3131
just -f on-chain/Justfile clean

src/scaffold/snapshots/offchain_only.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ build: build-off-chain
2525
# Build the on-chain blueprint first (consumers read ../blueprint/plutus.json),
2626
# then run each component's tests in role order.
2727
test: test-off-chain
28-
@echo "All tests passed."
28+
@echo '{{BOLD + BLACK + BG_GREEN}}All tests passed {{NORMAL}}'
2929
3030
clean:
3131
just -f off-chain/Justfile clean

src/scaffold/snapshots/scalus_multi_role.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ build: build-on-chain build-off-chain
3636
# Build the on-chain blueprint first (consumers read ../blueprint/plutus.json),
3737
# then run each component's tests in role order.
3838
test: build-on-chain test-on-chain test-off-chain test-integration
39-
@echo "All tests passed."
39+
@echo '{{BOLD + BLACK + BG_GREEN}}All tests passed {{NORMAL}}'
4040
4141
clean:
4242
just -f on-chain/Justfile clean

src/scaffold/snapshots/yaci_testing_only.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ build:
2222
# Build the on-chain blueprint first (consumers read ../blueprint/plutus.json),
2323
# then run each component's tests in role order.
2424
test: test-integration
25-
@echo "All tests passed."
25+
@echo '{{BOLD + BLACK + BG_GREEN}}All tests passed {{NORMAL}}'
2626
2727
clean:
2828
just -f test/Justfile clean

templates/_base/Justfile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ test:
5353
{%- if has_off_chain %} test-off-chain{% endif %}
5454
{%- if has_testing %} test-integration{% endif %}
5555
{%- if has_formal_methods %} verify{% endif %}
56-
@echo "All tests passed."
56+
@echo '{{ "{{BOLD + BLACK + BG_GREEN}} ✓ All tests passed {{NORMAL}}" }}'
5757

5858
clean:
5959
{%- if has_on_chain %}

0 commit comments

Comments
 (0)