diff --git a/test/Test.ts b/test/Test.ts index 30c07aa..c88a79a 100644 --- a/test/Test.ts +++ b/test/Test.ts @@ -1,10 +1,7 @@ import { describe, it } from "mocha"; -import { RPCServer } from '../src/Backend' +import { RPCServer, RPCSocket, SubscriptionResponse, makeSubResponse } from '../src/RPCLibrary' import * as uuidv4 from "uuid/v4" -import { RPCSocket } from "../src/Frontend"; -import { SubscriptionResponse } from "../src/Types"; -import { makeSubResponse } from "../src/Utils"; const add = (...args:number[]) => {return args.reduce((a,b)=>a+b, 0)} function makeServer(){