The SAP Cloud SDK for AI follows the style guide from the SAP Cloud SDK for JavaScript:
The rules below differ from the SAP Cloud SDK for JavaScript.
Use .test
not .spec
to differentiate test files.
❌ Examples of incorrect code:
/* Don't use .spec.ts */
test - file.spec.ts;
✅ Examples of correct code:
/* Use .test.ts */
test - file.test.ts;