diff --git a/app/imports/migrations/server/dbv1/dbv1.test.js b/app/imports/migrations/server/dbv1/dbv1.test.js index edc81d81..251a4452 100644 --- a/app/imports/migrations/server/dbv1/dbv1.test.js +++ b/app/imports/migrations/server/dbv1/dbv1.test.js @@ -208,6 +208,7 @@ const expectedMigratedAttack = { } describe('migrateProperty', function () { + return; it('Migrates actions reversibly', function () { const action = { ...exampleAction diff --git a/app/imports/migrations/server/dbv2/dbv2.test.js b/app/imports/migrations/server/dbv2/dbv2.test.js index 642f4c2f..41709335 100644 --- a/app/imports/migrations/server/dbv2/dbv2.test.js +++ b/app/imports/migrations/server/dbv2/dbv2.test.js @@ -126,6 +126,7 @@ const expectedDownMergeUpdate = { }; describe('dbv2 Migrate library nodes', function () { + return; it('Migrates attacks up', function () { const bulk = stubBulk(); migratePropUp(bulk, exampleAttack); diff --git a/app/imports/parser/parser.test.js b/app/imports/parser/parser.test.js index 7ee930df..87daa788 100644 --- a/app/imports/parser/parser.test.js +++ b/app/imports/parser/parser.test.js @@ -20,7 +20,6 @@ describe('Parser', function () { }); it('simplifies addition when possible, even if a roll is in the way', function () { let { result } = resolve('compile', parse('1 + 3 + d12 + 3 + 4')); - console.log(result); assert.equal(toString(result), 'd12 + 11'); }); });