Comply with ESM syntax. Remove unnecessary import.

This commit is contained in:
Eric Lavault
2021-10-09 13:37:33 +02:00
parent 3f32320c85
commit 2edbc23730

View File

@ -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))
})
})
})
})