Comment on including test file from a different package directory.

This commit is contained in:
Nick Martin
2012-04-02 22:15:16 -07:00
parent 81c1de24e3
commit a3ea86a4c6

View File

@@ -34,4 +34,13 @@ Package.on_test(function (api) {
api.add_files('livedata_connection_tests.js', ['client']);
api.add_files('livedata_tests.js', ['client', 'server']);
api.add_files('livedata_test_service.js', ['client', 'server']);
// XXX Currently there is no good way to share test files between
// packages. If the file is included here, when the whole test suite
// is run it is included twice and causes an error. However, if you
// don't include it here and run the tests just in this directory, the
// file is not included at all.
//
// api.add_files('../stream/stub_stream.js', ['client']);
});