seam-skeleton 0.5.38

HTML skeleton extraction pipeline for SeamJS CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* src/cli/skeleton/src/extract/tests/mod.rs */

use super::*;
use serde_json::json;

mod complex_structures;
mod flat_axis;
mod legacy;
mod nested;
mod regression;

fn make_axis(path: &str, kind: &str, values: Vec<serde_json::Value>) -> Axis {
	Axis { path: path.to_string(), kind: kind.to_string(), values }
}