aboutsummaryrefslogtreecommitdiffstats
path: root/test-data/document/Bug49933.doc
diff options
context:
space:
mode:
authorSergey Vladimirov <sergey@apache.org>2011-07-09 15:37:04 +0000
committerSergey Vladimirov <sergey@apache.org>2011-07-09 15:37:04 +0000
commite9279074fbfd545e07786874aaa6803fbdb75b18 (patch)
treee9fc8155d4ce5cfd10abb73451363663af832f0c /test-data/document/Bug49933.doc
parent12e2fa1e9e7804e0fd7932fafdcd665b729ec363 (diff)
downloadpoi-e9279074fbfd545e07786874aaa6803fbdb75b18.tar.gz
poi-e9279074fbfd545e07786874aaa6803fbdb75b18.zip
update status and .doc for issue 49933
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1144685 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test-data/document/Bug49933.doc')
-rw-r--r--test-data/document/Bug49933.docbin0 -> 33280 bytes
1 files changed, 0 insertions, 0 deletions
diff --git a/test-data/document/Bug49933.doc b/test-data/document/Bug49933.doc
new file mode 100644
index 0000000000..7db961b630
--- /dev/null
+++ b/test-data/document/Bug49933.doc
Binary files differ
'>backport/45098/stable29 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/autotest-js.sh
blob: b5bb9965553b959ce7b5cd43abcfc2abec3aed36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env bash
#
# ownCloud
#
# Run JS tests
#
# @author Vincent Petry
# @copyright 2014 Vincent Petry <pvince81@owncloud.com>
#

# set -e

NPM="$(which npm 2>/dev/null)"
PREFIX="build"

if test -z "$NPM"
then
	echo 'Node JS >= 0.8 is required to run the JavaScript tests' >&2
	exit 1
fi

# update/install test packages
mkdir -p "$PREFIX" && $NPM install --link --prefix "$PREFIX" || exit 3

# create scss test
mkdir -p tests/css
for SCSSFILE in core/css/*.scss
do
    FILE=$(basename $SCSSFILE)
    FILENAME="${FILE%.*}"
    printf "\$webroot:''; @import 'functions.scss'; @import 'variables.scss'; @import '${FILE}';" | ./build/bin/node-sass --include-path core/css/ > tests/css/${FILE}.css
done

KARMA="$PREFIX/node_modules/karma/bin/karma"

NODE_PATH='build/node_modules' KARMA_TESTSUITE="$1" $KARMA start tests/karma.config.js --single-run