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