// import { SVC } from './SVC' // describe('SVC', function () { // it('Works on arrays (small example)', async function () { // const lr = new SVC() // await lr.fit( // [ // [1, 2], // [2, -1] // ], // [-1, 1] // ) // const predict = ( // await lr.predict([ // [1, 2], // [2, -1] // ]) // ).arraySync() // expect(predict).toEqual([-1, 1]) // }, 10000) // }) describe('SVC', function () { it('works', function () { expect(1).toEqual(1) }) })