-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjustfile
More file actions
34 lines (25 loc) · 686 Bytes
/
Copy pathjustfile
File metadata and controls
34 lines (25 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
start:
./start.sh
fmt:
fama "./src/**/*.{ts,tsx}"
cd src-tauri && cargo fmt
test-frontend:
bun run test
test-rust:
cd src-tauri && cargo test
test-all:
bun run test
just test-rust
verify:
bun run lint:check
bun run typecheck
bun run test
just test-rust
coverage:
cd src-tauri && cargo llvm-cov --lib --tests --html --output-dir coverage/
coverage-summary:
cd src-tauri && cargo llvm-cov --lib --tests
tauri-smoke:
cd e2e-tests && bun run test
cloc:
cloc --include-lang="TypeScript,Rust,JavaScript,CSS" . --exclude-dir=node_modules,dist,target --fullpath --not-match-d='(src-tauri/target|src/generated|src/paraglide)'