Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-01-12 21:57:53 +0400
committerVincent Petry <pvince81@owncloud.com>2014-01-16 20:12:29 +0400
commit350214c6093bbd300102a364f20caa91d23d5fb9 (patch)
tree90ebee0447a2bd667f2afe18bc6f234e831db726 /build/package.json
parent85e00ad35a63d2d728140f3ece685d79d7a6140c (diff)
Added Javascript unit tests
- added karma utility to run jasmine unit tests - added Sinon library (for stubs/mocks/fakeserver) - added a few unit tests for core and files - added autotest-js.sh script
Diffstat (limited to 'build/package.json')
-rw-r--r--build/package.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/build/package.json b/build/package.json
new file mode 100644
index 00000000000..238ea6881a5
--- /dev/null
+++ b/build/package.json
@@ -0,0 +1,19 @@
+{
+ "name": "owncloud-js-tests",
+ "description": "ownCloud tests",
+ "version": "0.0.1",
+ "author": {
+ "name": "Vincent Petry",
+ "email": "pvince81@owncloud.com"
+ },
+ "private": true,
+ "homepage": "https://github.com/owncloud/",
+ "contributors": [],
+ "dependencies": {},
+ "devDependencies": {
+ "karma": "*",
+ "karma-jasmine": "*",
+ "karma-junit-reporter": "*"
+ },
+ "engine": "node >= 0.8"
+}