Skip to content

Commit

Permalink
Fix js::tests::test_js_stacktrace
Browse files Browse the repository at this point in the history
  • Loading branch information
PaDarochek committed Feb 5, 2024
1 parent 1659b40 commit 4e4f6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libcasr/src/sarif.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ impl SarifReport {
let mut stacks: Vec<Value> = Vec::new();
let mut stack = Map::new();
let mut frames: Vec<Value> = Vec::new();
init_ignored_frames!("cpp", "rust", "python", "go", "java");
init_ignored_frames!("cpp", "rust", "python", "go", "java", "js");
let stacktrace = report.filtered_stacktrace()?;
for (n, entry) in stacktrace.iter().enumerate() {
let mut frame = Map::new();
Expand Down

0 comments on commit 4e4f6fe

Please sign in to comment.