@kwaeri/migration
Version:
The @kwaeri/migration component of the @kwaer/node-kit application platform.
40 lines (35 loc) • 945 B
text/typescript
/*-----------------------------------------------------------------------------
* @package: node-kit migration
* @author: Richard B Winters
* @copyright: 2015-2019 Massively Modified, Inc.
* @license: Apache-2.0
* @version: 0.1.2
*---------------------------------------------------------------------------*/
// INCLUDES
import * as assert from 'assert';
import { Migration } from '../src/migration';
// 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 );
}
);
}
);
}
);