OILS / web / TEST.sh View on Github | oils.pub

22 lines, 10 significant
1#!/usr/bin/env bash
2#
3# Run tests in this directory.
4#
5# Requires node.js to be installed locally.
6#
7# Usage:
8# web/TEST.sh search
9
10: ${LIB_OSH=stdlib/osh}
11source $LIB_OSH/bash-strict.sh
12source $LIB_OSH/task-five.sh
13
14search() {
15 node web/search.test.js
16}
17
18soil-run() {
19 $0 search
20}
21
22task-five "$@"