mirror of
https://github.com/Hopiu/annotate-esprima.git
synced 2026-03-17 00:10:23 +00:00
15 lines
380 B
Bash
15 lines
380 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
if [ `command -v istanbul` ]; then
|
||
|
|
|
||
|
|
REVISION=`git log -1 --pretty=%h`
|
||
|
|
DATE=`git log -1 --pretty=%cD | cut -c 6-16`
|
||
|
|
|
||
|
|
echo "Running coverage analysis..."
|
||
|
|
istanbul cover test/runner.js
|
||
|
|
grep -v 'class="path' coverage/lcov-report/esprima/esprima.js.html | grep -v "class='meta" > test/esprima.js.html
|
||
|
|
|
||
|
|
else
|
||
|
|
echo "Please install Istanbul first!"
|
||
|
|
fi
|