I have a test class annotated with
@SpringBootTest.
@ActiveProfiles("default")
There was originally a bootstrap.yml file with the following contents
spring:
application:
name: [insert name]
cloud:
config:
enabled: false
vault:
enabled: false
I would like to move the contents of bootstrap.yml into application-default.yml and delete bootstrap.yml, but this causes the tests to fail. Is this something that is possible?