When you need to set active spring profile for testing in VSCode just add the following lines:
"java.test.config": {
"vmArgs": ["-Dspring.profiles.active=test"]
},
to .vscode/settings.json file.
In that way your Spring will take config from src/test/resources/application-text.yml file.
Leave a Reply