From 94066feeed38cbe123eb03f06f24afd8c610472a Mon Sep 17 00:00:00 2001 From: sjfhsjfh Date: Sun, 16 Feb 2025 12:36:55 +0800 Subject: [PATCH] test: fix files --- tests/walker_test.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/walker_test.rs b/tests/walker_test.rs index b0d761d..6f5d386 100644 --- a/tests/walker_test.rs +++ b/tests/walker_test.rs @@ -45,7 +45,7 @@ fn test_files( #[test] fn test_ignore() -> io::Result<()> { test_files( - ["src", "src/lib.typ", "excludes_test.txt"].into(), + ["src", "src/lib.typ", "excludes_test.txt", "typst.toml"].into(), walker_publish(&walker_test_path()).into_iter().collect(), ) } @@ -55,5 +55,8 @@ fn test_exclude() -> io::Result<()> { let walker = walker_install(&walker_test_path()) .map_err(|_| panic!("Walker not ok")) .unwrap(); - test_files(["src", "src/lib.typ"].into(), walker.into_iter().collect()) + test_files( + ["src", "src/lib.typ", "typst.toml"].into(), + walker.into_iter().collect(), + ) }