1
0
Fork 0
arangodb/js/common/tests
Willi Goesgens 5ec01eca99 Split relevant test parts in non / cluster 2014-11-06 17:26:13 +01:00
..
README
execute-infinite-shortest-path.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
execute-nothing.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
replication.js changed www.arangodb.org to www.arangodb.org 2014-10-30 19:17:25 +01:00
shell-aqlfunctions.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-attributes.js
shell-base64.js
shell-cap-constraint.js Wait for WAL collector in a few more waitUnload. 2014-09-25 14:01:58 +02:00
shell-cluster-collection.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-cluster-crud.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-cluster-simple.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-collection-noncluster.js
shell-collection-volatile-noncluster.js
shell-collection.js
shell-crypto.js Replaced PBKDF2_HMAC with PBKDF2_HMAC_SHA1 for OSX compat. 2014-09-08 14:32:40 +02:00
shell-database.js minor cosmetics 2014-11-01 22:39:21 +01:00
shell-document.js
shell-edge.js
shell-errors.js
shell-explain-cluster.js Split shell-statement into statement / explain-cluster / explain-noncluster 2014-10-30 16:08:10 +01:00
shell-explain-noncluster.js Split shell-statement into statement / explain-cluster / explain-noncluster 2014-10-30 16:08:10 +01:00
shell-figures-noncluster.js
shell-fs.js issue #1056: added tests for zipFile / unzipFile 2014-10-25 01:21:47 +02:00
shell-fulltext.js
shell-general-graph.js Deprecated _directedRelation and _undirectedRelation in general-graphs. Created _relation in general-graphs creating a _directedRelation. Handling undirected relations is now given to the user / api-implementor as arangodb itself does not offer any direction constrains which caused some confusion 2014-09-10 15:50:22 +02:00
shell-graph-algorithms.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-graph-measurement.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-graph-traversal.js Deprecated _directedRelation and _undirectedRelation in general-graphs. Created _relation in general-graphs creating a _directedRelation. Handling undirected relations is now given to the user / api-implementor as arangodb itself does not offer any direction constrains which caused some confusion 2014-09-10 15:50:22 +02:00
shell-graph.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-hash-index.js optimized memory usage of multi hash index 2014-10-11 18:38:22 +02:00
shell-index-ensure.js removed bitarray indexes 2014-09-15 14:19:38 +02:00
shell-index-geo.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-index.js removed bitarray indexes 2014-09-15 14:19:38 +02:00
shell-keygen-noncluster.js
shell-keygen.js
shell-noncluster-edge.js
shell-rename-noncluster.js shorten test duration 2014-10-18 02:33:47 +02:00
shell-require.js fixed requireApp in development mode 2014-10-21 12:28:33 +02:00
shell-simple-query.js issue #693: fixed firstExample for `_from` and/or `_to` attributes 2014-10-01 12:20:52 +02:00
shell-statement-cluster.js Split relevant test parts in non / cluster 2014-11-06 17:26:13 +01:00
shell-statement-noncluster.js Split relevant test parts in non / cluster 2014-11-06 17:26:13 +01:00
shell-statement.js Split relevant test parts in non / cluster 2014-11-06 17:26:13 +01:00
shell-transactions.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-unique-constraint.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-unload.js Removed jslint headers from server/client/common modules. 2014-09-02 22:14:56 +02:00
shell-users.js changed www.arangodb.org to www.arangodb.org 2014-10-30 19:17:25 +01:00

README

Conventions for testing framework:
==================================

All files in this directory whose name starts with "shell-"
and ends with ".js" automatically take part in client and 
server shell tests (targets "shell_client" and "shell_server"
and "shell_server_only").

If the filename contains the string "-cluster", then it is
only executed when testing in cluster mode. If the filename
contains the string "-noncluster", then it is only executed
when testing in single instance mode.

If the filename contains the string "-disabled", then it is
not executed at all. This is for tests that cannot be run from the
JavaScript test framework and have to be run from the Makefile.