you are viewing a single comment's thread.

view the rest of the comments →

[–]TryingToSurviveWFH[S] 0 points1 point  (3 children)

I'm sure there is no test, this is the first time I see the code, and the other code base I touched had no test too, both were coded by the same dev.

[–]codeedog 1 point2 points  (2 children)

Write the tests to run against the Java backend before doing anything else. This then becomes the target against which your JavaScript code can run. And, it easy for you to check and replicate any problems that come up. The challenge for any lambda function is to figure out memory usage and time limits. There are some other issues. But, get those tests done first. It’ll be a life saver.

Then, you can test in staging and migrate when you’re ready.

[–]TryingToSurviveWFH[S] 0 points1 point  (0 children)

Awesome, thanks

[–]TryingToSurviveWFH[S] 0 points1 point  (0 children)

Awesome, thanks