diff options
author | booo <borgers@mi.fu-berlin.de> | 2011-04-14 17:27:53 +0200 |
---|---|---|
committer | booo <borgers@mi.fu-berlin.de> | 2011-04-14 17:27:53 +0200 |
commit | 2c799a47e2d64467565791a7db3468f254a1f142 (patch) | |
tree | ada2584b7844aee050592d22b93b05575cbece72 | |
parent | b16f5bc714acfc3aa8ea9bff87c20bc810c67566 (diff) | |
download | osm-xapi-2c799a47e2d64467565791a7db3468f254a1f142.tar.gz osm-xapi-2c799a47e2d64467565791a7db3468f254a1f142.tar.xz osm-xapi-2c799a47e2d64467565791a7db3468f254a1f142.zip |
removed async_testing as sub repo; fixed test suites
-rw-r--r-- | src/nodejs/tests/async_basis_test.js | 2 | ||||
m--------- | src/nodejs/tests/node-async-testing | 0 | ||||
-rw-r--r-- | src/nodejs/tests/pathparsing.js | 4 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/nodejs/tests/async_basis_test.js b/src/nodejs/tests/async_basis_test.js index 47062e3..c083a19 100644 --- a/src/nodejs/tests/async_basis_test.js +++ b/src/nodejs/tests/async_basis_test.js @@ -1,5 +1,5 @@ if (module == require.main) { - return require('./node-async-testing/lib/async_testing').run(process.ARGV); + return require('async_testing').run(__filename, process.ARGV); } module.exports = { diff --git a/src/nodejs/tests/node-async-testing b/src/nodejs/tests/node-async-testing deleted file mode 160000 -Subproject a87f89d3f2437133364e1edc059a71a89520835 diff --git a/src/nodejs/tests/pathparsing.js b/src/nodejs/tests/pathparsing.js index ebd5baf..a012329 100644 --- a/src/nodejs/tests/pathparsing.js +++ b/src/nodejs/tests/pathparsing.js @@ -1,6 +1,6 @@ if (module == require.main) { - async_testing = require('./node-async-testing/lib/async_testing'); - return async_testing.run(process.ARGV); + async_testing = require('async_testing'); + return async_testing.run(__filename, process.ARGV); } var assert = require('assert'); |