diff options
| author | Laurenz <laurmaedje@gmail.com> | 2019-12-07 14:42:25 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2019-12-07 14:42:25 +0100 |
| commit | f364395e1d774456500ea61bb7b931f48a62ddfa (patch) | |
| tree | b4d66bd44c619d8ff93f36686c91752910fa4768 /Cargo.toml | |
| parent | 1099330988da78c82c6e155fab88d81fb2f1d4c0 (diff) | |
Create parsing test harness ⚡
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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 |
