#![cfg(feature = "js")]
#[test]
fn print_graph() {
let js = "import { exec } from 'child_process'; exec(process.env.TEST);";
let graph = pyrograph::parse::parse_js(js, "t.js").unwrap();
let findings = pyrograph::analyze(&graph).unwrap();
println!("Findings: {:?}", findings);
}