Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Apr 22, 2016
1 parent 5a76e9e commit ab9f25f
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions test/test.js
@@ -1,12 +1,20 @@
'use strict';

var main = require( '../lib/main.js' );
// MODULES //

var main = require( './../lib/index.js' );
var chai = require( 'chai' );
var expect = chai.expect;
var path = require( 'path' );
var file = path.normalize(__dirname + '/../data/test.txt');
var fileBin = path.normalize(__dirname + '/../data/test.bin');


// FIXTURES //

var file = path.normalize( __dirname + '/fixtures/test.txt' );
var fileBin = path.normalize( __dirname + '/fixtures/test.bin' );


// TESTS //

describe( 'loadModel', function tests() {

Expand Down

0 comments on commit ab9f25f

Please sign in to comment.