8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
|
import { ProxyDashboard } from "../src/proxy";
|
||
|
|
||
|
describe("test suite", () => {
|
||
|
it("initializes", () => {
|
||
|
expect(new ProxyDashboard()).toBeTruthy();
|
||
|
});
|
||
|
});
|