Skip to content

Commit 75c6975

Browse files
committed
wip: cli tests
1 parent c0e07b5 commit 75c6975

File tree

6 files changed

+482
-1
lines changed

6 files changed

+482
-1
lines changed

Cargo.lock

+103-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ tytanic-core = { version = "0.2.2", path = "crates/tytanic-core" }
2020
tytanic-filter = { version = "0.2.2", path = "crates/tytanic-filter" }
2121
tytanic-utils = { version = "0.2.2", path = "crates/tytanic-utils" }
2222

23+
assert_cmd = "2.0.16"
24+
assert_fs = "1.1.2"
2325
chrono = "0.4.38"
2426
clap = "4.4.12"
2527
codespan-reporting = "0.11.1"
@@ -36,6 +38,7 @@ oxipng = "9.1.3"
3638
pest = "2.7.10"
3739
pest_derive = "2.7.10"
3840
png = "0.17.16"
41+
predicates = "3.1.3"
3942
rayon = "1.8.0"
4043
regex = "1.10.5"
4144
serde = "1.0.195"

crates/tytanic/Cargo.toml

+6
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ typst.workspace = true
5353
[build-dependencies]
5454
toml.workspace = true
5555

56+
[dev-dependencies]
57+
assert_cmd.workspace = true
58+
predicates.workspace = true
59+
tempdir.workspace = true
60+
toml.workspace = true
61+
5662
[features]
5763
default = ["embed-fonts"]
5864
embed-fonts = ["typst-kit/embed-fonts"]

0 commit comments

Comments
 (0)