nornagon / saxi

Tools & library for driving the AxiDraw pen plotter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tests for EBB are broken

alexrudd2 opened this issue · comments

commented
> saxi@0.14.0 test
> jest

 PASS  src/__tests__/planning.test.ts
 FAIL  src/__tests__/ebb.test.ts
  ● Test suite failed to run

    src/__tests__/ebb.test.ts:23:22 - error TS2339: Property 'list' does not exist on type 'typeof EBB'.

    23     expect(await EBB.list()).toEqual([])
                            ~~~~
    src/__tests__/ebb.test.ts:28:22 - error TS2339: Property 'list' does not exist on type 'typeof EBB'.

    28     expect(await EBB.list()).toEqual([])

Here are the lines that broke it:
593c451#diff-290f6b1d4ab368bc49cff4217841f3c2ac88b2c7c98b421a81844b7e26d1aa22L19

commented

Additionally, the use of TransformStream won't work in Node.js since that's using a browser Streams API.

593c451#diff-f6bf3f98cc0ece205255773b4b55b5b586ba90bfc083d9cb5d1b91f9520eb63cR1

Yeah, I'd noticed this too but didn't have time to fix it. I'd be happy to review a PR!

commented

Yeah, I'd noticed this too but didn't have time to fix it. I'd be happy to review a PR!

I've been starting to learn this codebase (and TypeScript, actually) in my fork: https://github.com/alexrudd2/saxi

When I figure some things out I'd be happy to send some PRs your way, or you can cherry-pick if you'd like. To start, I'm trying to upgrade to node-serialport v10 (which is tricky) and upgrade the other dependencies (pretty easy). I'll get a real Axidraw hardware soon to test.

commented

Additionally, the use of TransformStream won't work in Node.js since that's using a browser Streams API.

This can be fixed by adding the following to src/regex-transform-stream.ts:
import { TransformStream } from "web-streams-polyfill/ponyfill";

commented

OK, with some more experimentation, and reading #131, I actually think reverting all the WebSerial stuff is the way to go. It's clearly broken. What do you think about a path forward?