7 lines
134 B
TypeScript
7 lines
134 B
TypeScript
import { expect } from "chai";
|
|
|
|
describe("webSocket", () => {
|
|
it("should run test", () => {
|
|
expect(true).to.eq(true);
|
|
});
|
|
});
|