mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
17 lines
607 B
Bash
Executable File
17 lines
607 B
Bash
Executable File
#!/bin/bash
|
|
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
BUILD_DIR="$ROOT_DIR/tests-build"
|
|
TEST_FILE="$1"
|
|
|
|
rsync -a --exclude "node_modules/" "$ROOT_DIR/tests/" "$BUILD_DIR/"
|
|
rsync -a "$ROOT_DIR/../ReactNativeClient/lib/" "$BUILD_DIR/lib/"
|
|
rsync -a "$ROOT_DIR/build/locales/" "$BUILD_DIR/locales/"
|
|
mkdir -p "$BUILD_DIR/data"
|
|
|
|
if [[ $TEST_FILE == "" ]]; then
|
|
(cd "$ROOT_DIR" && npm test tests-build/synchronizer.js)
|
|
(cd "$ROOT_DIR" && npm test tests-build/encryption.js)
|
|
(cd "$ROOT_DIR" && npm test tests-build/ArrayUtils.js)
|
|
else
|
|
(cd "$ROOT_DIR" && npm test tests-build/$TEST_FILE.js)
|
|
fi |