You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we don't have formal tests to ensure successful container creation while deploying applications.
Writing unit tests for Gasper's Docker package will not only solve the above issue but will act as a sanity check when building new features on top of the existing ones.
Tests are simple in Golang:- filename_test.go will run the tests for filename.go for every file in the same package.
This article can be referred to for more information.
The text was updated successfully, but these errors were encountered:
Currently we don't have formal tests to ensure successful container creation while deploying applications.
Writing unit tests for Gasper's Docker package will not only solve the above issue but will act as a sanity check when building new features on top of the existing ones.
Tests are simple in Golang:-
filename_test.go
will run the tests forfilename.go
for every file in the same package.This article can be referred to for more information.
The text was updated successfully, but these errors were encountered: