bitburner-filesync/test/networking/messageGenerators.spec.ts
Heinous Tugboat bc39f10a8e Prettier pass
2022-10-01 10:54:26 -04:00

33 lines
757 B
TypeScript

import { expect } from "chai";
import {
fileChangeEventToMsg,
fileRemovalEventToMsg,
requestDefinitionFile,
requestFilenames,
} from "../../src/networking/messageGenerators";
describe("messageGenerators", () => {
describe("fileChangeEventToMsg", () => {
it("should exist", () => {
expect(fileChangeEventToMsg).to.exist;
});
});
describe("fileRemovalEventToMsg", () => {
it("should exist", () => {
expect(fileRemovalEventToMsg).to.exist;
});
});
describe("requestDefinitionFile", () => {
it("should exist", () => {
expect(requestDefinitionFile).to.exist;
});
});
describe("requestFilenames", () => {
it("should exist", () => {
expect(requestFilenames).to.exist;
});
});
});