aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-home
Commit message (Expand)AuthorAgeFilesLines
...
* SONAR-6648 Allow to redirect logs to a custom streamDuarte Meneses2015-06-231-0/+28
* Fix quality flawsSimon Brandhof2015-06-211-1/+1
* Revert "Fix quality flaws"Sébastien Lesaint2015-06-181-1/+1
* Fix quality flawsSimon Brandhof2015-06-181-1/+1
* fixed unstable PersistentCacheTestDuarte Meneses2015-06-051-6/+8
* improve cache loggingDuarte Meneses2015-06-051-5/+4
* fix test when SONAR_USER_HOME env var is setDuarte Meneses2015-06-041-0/+3
* SONAR-6577 Offline mode in preview modeDuarte Meneses2015-06-047-30/+538
* SONAR-6517 apply feedbackSimon Brandhof2015-05-111-1/+0
* SONAR-6370 isolate plugin classloader from coreSimon Brandhof2015-05-112-72/+1
* Redundant importsDavid Gageot2015-05-071-1/+0
* Redundant throws clause in testsDavid Gageot2015-05-072-3/+3
* Update pom to 5.2-SNAPSHOTJulien Lancelot2015-02-271-1/+1
* Replace fest-assert by assertJSimon Brandhof2015-01-103-3/+3
* Profile dbTests enables only the tests involving a databaseSimon Brandhof2014-12-101-17/+2
* Upgrade version to 5.1-SNAPSHOTEric Hartmann2014-12-091-1/+1
* Fix quality flawsSimon Brandhof2014-12-091-1/+0
* Refactor FileCache#newTempFile()Simon Brandhof2014-12-081-17/+4
* Remove JFreeChart from batch classpathSimon Brandhof2014-10-231-0/+10
* Add missing @Override annotationsSimon Brandhof2014-10-103-0/+9
* Upgrade version to 5.0-SNAPSHOTEric Hartmann2014-09-041-1/+1
* Upgrade to 4.5-SNAPSHOTEric Hartmann2014-07-021-1/+1
* Upgrade hamcrest and fix conflicts with JUnit and MockitoSimon Brandhof2014-06-201-1/+6
* Upgrade to 4.4-SNAPSHOTEric Hartmann2014-04-181-1/+1
* SONAR-5062 New implementation of concurrent safe unzip using FileLockJulien HENRY2014-03-252-33/+22
* SONAR-5062 Disable test until a correct implementation is found.Julien HENRY2014-03-251-1/+3
* SONAR-5062 Improve stability of testsJulien HENRY2014-03-241-1/+4
* SONAR-5062 Add testJulien HENRY2014-03-242-5/+26
* SONAR-5062 Don't fail when concurrent process unzip same plugin dependencyJulien HENRY2014-03-241-1/+7
* Update copyright headers (replace 2013 by 2014)Simon Brandhof2014-03-1111-11/+11
* Upgrade version to 4.3-SNAPSHOTEric Hartmann2014-02-241-1/+1
* Upgrade to 4.2-SNAPSHOTEric Hartmann2013-12-111-1/+1
* Fix some quality flawsSimon Brandhof2013-12-091-1/+1
* Reduce size of test resource.Julien HENRY2013-12-091-0/+0
* Add missing file to previous commitJulien HENRY2013-12-091-0/+0
* Improve UT coverageJulien HENRY2013-12-091-0/+26
* SONAR-4830 Extract plugin dependencies in the cacheJulien HENRY2013-11-262-0/+42
* Update to 4.1-SNAPSHOTEric Hartmann2013-10-221-1/+1
* Fix some quality flawsDinesh Bolkensteyn2013-08-291-1/+1
* Upgrade to 4.0-SNAPSHOTEric Hartmann2013-07-301-1/+1
* [maven-release-plugin] prepare for next development iterationEric Hartmann2013-07-251-1/+1
* [maven-release-plugin] prepare release 3.7-RC1Eric Hartmann2013-07-251-1/+1
* SONAR-4388 Move from Sonar to SonarQubeJulien HENRY2013-07-081-1/+1
* Remove coupling on commons-io FileUtilsSimon Brandhof2013-06-171-2/+1
* Upgrade to 3.7-SNAPSHOTEric Hartmann2013-06-111-1/+1
* Update copyright headersSimon Brandhof2013-04-2211-44/+44
* SONAR-4252 rename Sonar to SonarQube in source headersSimon Brandhof2013-04-2111-33/+33
* Update version to 3.6-SNAPSHOTEric Hartmann2013-03-131-1/+1
* Release Sonar 3.5Eric Hartmann2013-03-131-1/+1
* [maven-release-plugin] prepare for next development iterationEric Hartmann2013-03-071-1/+1
backport/48177/stable30 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/autotest-js.sh
blob: 475a61df59e21c49f05dcc03ce7c3a290c603bd2 (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
#!/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

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

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