summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2019-12-07 14:42:25 +0100
committerLaurenz <laurmaedje@gmail.com>2019-12-07 14:42:25 +0100
commitf364395e1d774456500ea61bb7b931f48a62ddfa (patch)
treeb4d66bd44c619d8ff93f36686c91752910fa4768 /Cargo.toml
parent1099330988da78c82c6e155fab88d81fb2f1d4c0 (diff)
Create parsing test harness ⚡
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 8 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0ce0d396..76db3d18 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,6 +3,7 @@ name = "typstc"
version = "0.1.0"
authors = ["Laurenz Mädje <laurmaedje@gmail.com>"]
edition = "2018"
+build = "build.rs"
[dependencies]
tide = { path = "../tide" }
@@ -16,6 +17,11 @@ name = "typst-bin"
path = "src/bin/main.rs"
[[test]]
-name = "layouting"
-path = "tests/layouting.rs"
+name = "layout"
+path = "tests/layout.rs"
+harness = false
+
+[[test]]
+name = "parse"
+path = "tests/parse.rs"
harness = false