ua-parser-js/script/test-all.sh
2023-04-15 00:01:49 +07:00

21 lines
292 B
Bash
Executable File

#!/usr/bin/env bash
echo '
- lint js code
'
jshint src && jshint script || exit 1
echo '
- test using mocha
'
mocha -R list test/mocha*js || exit 1
echo '
- test using playwright
'
npx playwright test || exit 1
echo '
- lint lockfile
'
npx lockfile-lint -p package-lock.json || exit 1