mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
17 lines
369 B
TOML
17 lines
369 B
TOML
[tasks.test]
|
|
clear = true
|
|
toolchain = "1.56.1"
|
|
command = "cargo"
|
|
# test target can be optionally specified like `cargo make test html_macro`,
|
|
args = ["test", "${@}"]
|
|
|
|
[tasks.test-lint]
|
|
clear = true
|
|
toolchain = "nightly"
|
|
command = "cargo"
|
|
args = ["test", "test_html_lints", "--features", "lints"]
|
|
|
|
[tasks.test-overwrite]
|
|
extend = "test"
|
|
env = { TRYBUILD = "overwrite" }
|