mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 15:36:29 -04:00
13 lines
207 B
Bash
Executable file
13 lines
207 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
cd lib/binding_web
|
|
|
|
if [[ ! -d node_modules/chai ]] || [[ ! -d node_modules/mocha ]]; then
|
|
printf 'Installing test dependencies...\n'
|
|
npm install
|
|
fi
|
|
|
|
node_modules/.bin/mocha
|