mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-05 00:01:37 +08:00
Comply with ESM syntax. Remove unnecessary import.
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user