Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First version of node client #300

Merged
merged 8 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .prettierrc
Empty file.
6 changes: 6 additions & 0 deletions clients/node-client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules/
dist/
coverage/
.env
*.log
logs/
Empty file added clients/node-client/.prettierrc
Empty file.
17 changes: 17 additions & 0 deletions clients/node-client/jest.integration.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
// Uses ts-jest to handle TypeScript files
preset: "ts-jest",

// Runs tests in Node.js environment (not browser)
testEnvironment: "node",

// Runs both load and functionality test files
testMatch: [
"**/__tests__/**/*.load.test.ts",
"**/__tests__/**/*.functionality.test.ts",
],

// Sets timeout to 30 seconds instead of Jest's default 5 seconds
// because API calls take longer than regular unit tests
testTimeout: 30000,
};
Loading
Loading