From 33817f235ba98a233908ca681269f77ddcf0a6fc Mon Sep 17 00:00:00 2001 From: Nick Martin Date: Tue, 10 Jul 2012 16:01:58 -0700 Subject: [PATCH] Use the package under test when testing. This should probably be automatic, since we do it in every single package. --- packages/accounts-oauth2-helper/package.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/accounts-oauth2-helper/package.js b/packages/accounts-oauth2-helper/package.js index 94a852d156..a76d0bf0f6 100644 --- a/packages/accounts-oauth2-helper/package.js +++ b/packages/accounts-oauth2-helper/package.js @@ -12,5 +12,6 @@ Package.on_use(function (api) { }); Package.on_test(function (api) { + api.use('accounts-oauth2-helper', 'server'); api.add_files("oauth2_tests.js", 'server'); -}); \ No newline at end of file +});