From 78efe0b06bcd548970e17bc3f10203d4909ef169 Mon Sep 17 00:00:00 2001 From: David Greenspan Date: Tue, 10 Mar 2015 12:31:49 -0700 Subject: [PATCH] Don't run logic-solver tests on client see comment --- packages/logic-solver/package.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/logic-solver/package.js b/packages/logic-solver/package.js index 7f9ff09ed1..58c488ccf4 100644 --- a/packages/logic-solver/package.js +++ b/packages/logic-solver/package.js @@ -1,6 +1,6 @@ Package.describe({ summary: "General satisfiability solver for logic problems", - version: '0.0.2-vs.2' + version: '1.0.0-vs.3' }); Package.on_use(function (api) { @@ -16,5 +16,10 @@ Package.on_use(function (api) { Package.on_test(function (api) { api.use('tinytest'); api.use('logic-solver'); - api.add_files('logic_tests.js'); + + // logic-solver is totally meant for the client too, but not old + // ones like IE 8, so we have to exclude it from our automated + // testing. It needs a browser released in the last year (say) so + // that Emscripten-compiled code runs reasonably. + api.add_files('logic_tests.js', 'server'); });