We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 526d81f commit 1ee76b1Copy full SHA for 1ee76b1
script/smoke_test.sh
@@ -61,7 +61,8 @@ check_complexity () {
61
echo "Report written to $report_file"
62
fi
63
64
- top=$(echo "$out" | head -n 1 | sed 's/ \+/ /g')
+ out1=$(echo "$out" | grep -v "ExperimentalWarning" | grep -v "experimental" | grep -v "node")
65
+ top=$(echo "$out1" | head -n 1 | sed 's/ \+/ /g')
66
top_definition=$(echo "$top" | cut -d' ' -f1)
67
top_definition_line=$(grep -n "$top_definition:" grammar.js | head -n 1 | cut -d : -f 1)
68
actual=$(echo "$top" | cut -d' ' -f2)
0 commit comments