Don't run logic-solver tests on client

see comment
This commit is contained in:
David Greenspan
2015-03-10 12:31:49 -07:00
parent dbfd1291c7
commit 78efe0b06b

View File

@@ -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');
});