mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
This follows up on extracting code to js/search_suggestion.js, and all the search tests apply to the new module. (imported from commit dec6c8614c25b4f82da57edeaddc7cfef28260a5)
14 lines
288 B
Bash
Executable File
14 lines
288 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
cd "$(dirname "$0")"/../zephyr/tests/frontend/node
|
|
|
|
STATIC_DIR=`python -c 'import os;print os.path.realpath("../../../../static")'`
|
|
|
|
export NODE_PATH=$STATIC_DIR
|
|
|
|
NODEJS=$(which nodejs || which node)
|
|
|
|
$NODEJS message_tour.js
|
|
$NODEJS unread.js
|
|
$NODEJS search_suggestion.js
|