initial matching

This commit is contained in:
Robin Appelman 2024-07-21 01:17:23 +02:00
commit 246b4552f9
31 changed files with 87489 additions and 43394 deletions

View file

@ -5,7 +5,7 @@ use test_case::test_case;
fn snapshot_test(name: &str) {
let root = format!("test-data/{name}");
let mut output = Vec::<u8>::with_capacity(1024 * 1024);
extract_dir(&root, &mut output).unwrap();
extract_dir(&root, &mut output, false).unwrap();
let output: Vec<LoggingStatement> = serde_json::from_slice(&output).unwrap();
insta::assert_json_snapshot!(output)