From 83c2806c538d44e5e3449ee824df780197f57622 Mon Sep 17 00:00:00 2001 From: guybedford Date: Tue, 26 Nov 2013 21:40:36 +0200 Subject: [PATCH] include registry library tests --- .gitignore | 1 + test/config.js | 15 +++++++++++++++ test/libraries.html | 17 +++++++++++++++++ test/package.json | 18 ++++++++++++++++++ 4 files changed, 51 insertions(+) create mode 100644 .gitignore create mode 100644 test/config.js create mode 100644 test/libraries.html create mode 100644 test/package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5d71bda --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +test/jspm_packages diff --git a/test/config.js b/test/config.js new file mode 100644 index 0000000..4d55a6f --- /dev/null +++ b/test/config.js @@ -0,0 +1,15 @@ +jspm.config({ + "baseURL": "lib", + "map": { + "moment": "github:moment/moment@2.4.0", + "foundation": "github:zurb/bower-foundation@5.0.2", + "jquery": "github:components/jquery@2.0.3", + "backbone": "npm:backbone@1.1.0", + "d3": "npm:d3@3.3.10", + "bootstrap": "github:twbs/bootstrap@3.0.2", + "chosen": "github:harvesthq/chosen@1.0.0", + "css": "github:jspm/plugin-css@master", + "npm:underscore": "npm:underscore@1.5.2" + }, + "jspmPackages": "jspm_packages" +}); \ No newline at end of file diff --git a/test/libraries.html b/test/libraries.html new file mode 100644 index 0000000..dd8f2e5 --- /dev/null +++ b/test/libraries.html @@ -0,0 +1,17 @@ + + + + + diff --git a/test/package.json b/test/package.json new file mode 100644 index 0000000..5ac4fc9 --- /dev/null +++ b/test/package.json @@ -0,0 +1,18 @@ +{ + "configFile": "config.js", + "directories": { + "jspm_packages": "jspm_packages", + "lib": "lib" + }, + "dependencyMap": { + "moment": "github:moment/moment@2.4.0", + "foundation": "github:zurb/bower-foundation@5.0.2", + "jquery": "github:components/jquery@2.0.3", + "backbone": "npm:backbone@1.1.0", + "d3": "npm:d3@3.3.10", + "bootstrap": "github:twbs/bootstrap@3.0.2", + "chosen": "github:harvesthq/chosen@1.0.0", + "css": "github:jspm/plugin-css@master", + "npm:underscore": "npm:underscore@1.5.2" + } +} \ No newline at end of file