UNPKG

@kwaeri/migration

Version:

The @kwaeri/migration component of the @kwaer/node-kit application platform.

22 lines (21 loc) 754 B
/*----------------------------------------------------------------------------- * @package: node-kit migration * @author: Richard B Winters * @copyright: 2015-2019 Massively Modified, Inc. * @license: Apache-2.0 * @version: 0.1.2 *---------------------------------------------------------------------------*/ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); // INCLUDES const assert = require("assert"); // DEFINES //let migrator = new Migration(); // SANITY CHECK - Makes sure our tests are working proerly describe('sanity', function () { describe('sanity()', function () { it('Should return true.', function () { assert.equal([1, 2, 3, 4].indexOf(4), 3); }); }); });