13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
import { expect } from "chai";
|
|
|
|
import { DPT16 } from "../src/DPT16"
|
|
import { BufferLengthError } from "../src/errors/BufferLengthError";
|
|
import { InvalidValueError } from "../src/errors/InvalidValueError";
|
|
|
|
import { compareBuffers } from "./util"
|
|
|
|
describe("Test DPT16", (): void => {
|
|
|
|
let dpt = new DPT16();
|
|
|
|
}); |