Began actually testing :(

This commit is contained in:
Thaum
2015-03-23 13:55:17 +00:00
parent 48f8cef928
commit dc8a286a9a
11 changed files with 196 additions and 20 deletions

View File

@@ -0,0 +1,14 @@
Package.describe({
name: "velocity:test-proxy",
summary: "Dynamically created package to expose test files to mirrors",
version: "0.0.4",
debugOnly: true
});
Package.onUse(function (api) {
api.use("coffeescript", ["client", "server"]);
api.add_files("tests/mocha/server/lib/characterUtility.js",["server"]);
api.add_files("tests/mocha/server/model/character/character.js",["server"]);
api.add_files("tests/mocha/server/model/character/effects.js",["server"]);
api.add_files("tests/mocha/server/sampleServerTest.js",["server"]);
});