mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Don't run logic-solver tests on client
see comment
This commit is contained in:
@@ -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');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user