Skip to content

Commit

Permalink
Comply with ESM syntax. Remove unnecessary import.
Browse files Browse the repository at this point in the history
  • Loading branch information
lvlte committed Oct 9, 2021
1 parent 3f32320 commit 2edbc23
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Linear-Algebra/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"
/* eslint-disable */

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
Expand Down Expand Up @@ -211,4 +210,4 @@ describe('class Matrix', function () {
assert.ok(B.equal(C))
})
})
})
})

0 comments on commit 2edbc23

Please sign in to comment.