diff --git a/Linear-Algebra/test/test.js b/Linear-Algebra/test/test.js index 1deb0f8b2..a99d97aad 100644 --- a/Linear-Algebra/test/test.js +++ b/Linear-Algebra/test/test.js @@ -5,12 +5,11 @@ This file contains the test-suite for the linear algebra library. The tests use javascript test-framework mocha */ + /* eslint-disable */ -import { LinearAlgebra } from "../src/la_lib" - -var assert = require('assert') -var fs = require('fs') +import { LinearAlgebra } from '../src/la_lib' +import * as assert from 'assert' // file is included here // Tests goes here @@ -211,4 +210,4 @@ describe('class Matrix', function () { assert.ok(B.equal(C)) }) }) -}) \ No newline at end of file +})