Create a label saying "Test version" (or something like that) when the client is built in test-configuration (which also needs to be created). Therefore we need a new field in all configs, something like show_test_label. The test environment (/client/src/environments/environment.test.ts which needs to be created including a script in the package.json) probably looks exactly like the prod-env but has set the show_test_label to true (all other would have false).
Create a label saying "Test version" (or something like that) when the client is built in test-configuration (which also needs to be created). Therefore we need a new field in all configs, something like
show_test_label
. The test environment (/client/src/environments/environment.test.ts
which needs to be created including a script in thepackage.json
) probably looks exactly like the prod-env but has set theshow_test_label
totrue
(all other would havefalse
).