We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33f45e4 commit 9554aeaCopy full SHA for 9554aea
src/client.test.ts
@@ -1,5 +1,7 @@
1
import { Client } from "./client";
2
-import { endpoint, API_TOKEN } from "../examples/config";
+
3
+const endpoint = "wss://api-staging.zerion.io";
4
+const API_TOKEN = "Zerion.0JOY6zZTTw6yl5Cvz9sdmXc7d5AhzVMG";
5
6
describe("Client", () => {
7
test("instantiates", () => {
tsconfig.json
@@ -1,8 +1,11 @@
{
+ "include": ["src"],
+ "exclude": ["examples"],
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
8
+ "declaration": true,
9
"strict": true,
10
"noUnusedLocals": true,
11
"noUnusedParameters": true,
0 commit comments