util.spec.ts 254 B

1234567891011
  1. import "./setup";
  2. import { util } from "../lib/util";
  3. import { expect, describe, it } from "@jest/globals";
  4. describe("util", () => {
  5. describe("#chunkedMTU", () => {
  6. it("should be 16300", () => {
  7. expect(util.chunkedMTU).toBe(16300);
  8. });
  9. });
  10. });