summaryrefslogtreecommitdiff
path: root/evergreen/jstestfuzz_setup.sh
blob: f0d2b7a4c2922bfe3129689fccfc7b25277b9f61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
. "$DIR/prelude.sh"

cd src

set -o errexit
set -o verbose

add_nodejs_to_path

git clone git@github.com:10gen/jstestfuzz.git

pushd jstestfuzz
npm install
npm run prepare
popd