We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f32320 commit 2edbc23Copy full SHA for 2edbc23
1 file changed
Linear-Algebra/test/test.js
@@ -5,12 +5,11 @@
5
This file contains the test-suite for the linear algebra library.
6
The tests use javascript test-framework mocha
7
*/
8
-/* eslint-disable */
9
10
-import { LinearAlgebra } from "../src/la_lib"
+/* eslint-disable */
11
12
-var assert = require('assert')
13
-var fs = require('fs')
+import { LinearAlgebra } from '../src/la_lib'
+import * as assert from 'assert'
14
15
// file is included here
16
// Tests goes here
@@ -211,4 +210,4 @@ describe('class Matrix', function () {
211
210
assert.ok(B.equal(C))
212
})
213
214
-})
+})
0 commit comments