Please enable JavaScript.
Coggle requires JavaScript to display documents.
DevOps (Testing (Types (Unit Testing (Should be written by developers…
DevOps
Testing
-
Types
-
-
-
Unit Testing
Tools
Test Libraries
-
-
JavaScript
-
-
Jest
-
Joins expect/asserts, stubs/mocks, and snapshots in one library
Chai
Useful assertion library, pairs well with Mocha
-
-
Without unit test coverage, commiting the code must be blocked
-
-
-
CI / CD
-
-
-
:fire: Ideas
-
if an compile error occurred in dev branch, an email must be sent to the developer who committed any code since last successful build
if it is manul action, mail also must be sent to that developer
-
-
-
-
-
Monitoring&Dashboard
Applications
NewRelic
Data Dog
-
-
Code Quality Analysis
Tools
SonarCube
Synopsys
-
-
-
Version Control
-
:fire: Ideas
Code Review
Every Pull Request or change in main branches like Dev/Test, Master must be reviewed by developer manager and responsible people like project manager
Coding Standart must be written for all systems (salesfore,.net, netsuite)
Example of common library,service usage must be published
-
-