- Introduced Aggregator.sol for Chainlink-compatible oracle functionality, including round-based updates and access control. - Added OracleWithCCIP.sol to extend Aggregator with CCIP cross-chain messaging capabilities. - Created .gitmodules to include OpenZeppelin contracts as a submodule. - Developed a comprehensive deployment guide in NEXT_STEPS_COMPLETE_GUIDE.md for Phase 2 and smart contract deployment. - Implemented Vite configuration for the orchestration portal, supporting both Vue and React frameworks. - Added server-side logic for the Multi-Cloud Orchestration Portal, including API endpoints for environment management and monitoring. - Created scripts for resource import and usage validation across non-US regions. - Added tests for CCIP error handling and integration to ensure robust functionality. - Included various new files and directories for the orchestration portal and deployment scripts.
41 lines
924 B
JSON
41 lines
924 B
JSON
{
|
|
"name": "@emoney/api-tests",
|
|
"version": "1.0.0",
|
|
"description": "API integration and contract tests",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:integration": "jest --testPathPattern=integration",
|
|
"test:contract": "jest --testPathPattern=contract",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.2",
|
|
"graphql": "^16.8.1",
|
|
"graphql-request": "^6.1.0",
|
|
"ajv": "^8.12.0",
|
|
"ajv-formats": "^2.1.1",
|
|
"js-yaml": "^4.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.11",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20.10.0",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"testEnvironment": "node",
|
|
"testMatch": [
|
|
"**/test/**/*.test.ts"
|
|
],
|
|
"collectCoverageFrom": [
|
|
"api/services/**/*.ts",
|
|
"!**/*.d.ts",
|
|
"!**/node_modules/**"
|
|
]
|
|
}
|
|
}
|
|
|