util.ts 238 B

12345678910
  1. import { expect } from "chai";
  2. import { util } from "../lib/util";
  3. describe("util", function() {
  4. describe("#chunkedMTU", function() {
  5. it("should be 16300", function() {
  6. expect(util.chunkedMTU).to.eq(16300);
  7. });
  8. });
  9. });