Skip to content

Commit db9338e

Browse files
committed
chore: Add tests to Justfile
1 parent be28964 commit db9338e

1 file changed

Lines changed: 14 additions & 6 deletions

File tree

Justfile

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
default: all
2-
31
# Build all components (Rust, JS, Go)
4-
all: rust js go
2+
build: rust js go
53

64
# Build Rust components
75
rust:
@@ -19,6 +17,16 @@ js:
1917
go:
2018
./scripts/build-components-go.sh
2119

22-
# List available tasks
23-
help:
24-
just --list
20+
serve:
21+
obelisk server run --config ./obelisk-local.toml
22+
23+
test-unit:
24+
./scripts/test-unit.sh
25+
test-integration:
26+
./scripts/test-integration.sh
27+
test-e2e: rust
28+
./scripts/test-e2e.sh ./obelisk-local.toml truncate
29+
test-e2e-js: js
30+
./scripts/test-e2e.sh ./obelisk-local-js-all.toml truncate
31+
test-e2e-go: go
32+
./scripts/test-e2e.sh ./obelisk-local-go-all.toml truncate

0 commit comments

Comments
 (0)