removed jest fully and fixed final tests in libs

This commit is contained in:
Bojan Kucera 2025-06-04 17:06:23 -04:00
parent 1899078523
commit 3d910a13e0
8 changed files with 35 additions and 744 deletions

View file

@ -95,7 +95,7 @@ describe('HttpClient Authentication Integration', () => {
const token = 'test-token-123';
const client = new HttpClient({
defaultHeaders: {
'Authorization': `Bearer ${token}`
'authorization': `bearer ${token}`
}
});
const response = await client.get(`${mockServerBaseUrl}/headers`);

View file

@ -8,7 +8,7 @@
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "jest"
"test": "bun test"
},
"dependencies": {
"@stock-bot/config": "*",
@ -17,9 +17,7 @@
"pino-pretty": "^13.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.5.0",
"jest": "^29.5.0",
"typescript": "^5.4.5"
}
}

View file

@ -1,52 +0,0 @@
{
"name": "@stock-bot/questdb-client",
"version": "1.0.0",
"description": "QuestDB client library for Stock Bot platform",
"main": "src/index.ts",
"type": "module",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=src",
"test:integration": "jest --testPathPattern=integration",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"dev": "tsc --watch"
},
"dependencies": {
"@questdb/nodejs-client": "^3.0.0",
"@stock-bot/config": "*",
"@stock-bot/logger": "*",
"immutable": "^5.1.2",
"pg": "^8.11.3",
"pg-mem": "^3.0.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/pg": "^8.10.7",
"typescript": "^5.3.0",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"bun-types": "^1.2.15",
"@types/jest": "^29.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0"
},
"keywords": [
"questdb",
"time-series",
"database",
"client",
"stock-bot"
],
"exports": {
".": {
"import": "./src/index.ts",
"require": "./dist/index.js"
}
}
}

View file

@ -8,13 +8,12 @@
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"test": "jest"
"test": "bun test"
}, "dependencies": {
"@stock-bot/types": "*",
"date-fns": "^2.30.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"typescript": "^5.4.5"
}
}