Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlehansen committed Oct 25, 2018
1 parent fec2442 commit 0a9182e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,11 @@ To log the event payload add the configuration to `application.properties` or as
```
logging.level.no.fint.provider.events.status.StatusController: DEBUG
logging.level.no.fint.provider.events.response.ResponseController: DEBUG
```
```

## Integration test

To enable integration test set the following system property:
```
integration-test=true
```
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import java.util.concurrent.TimeUnit

@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT, classes = Application)
@ActiveProfiles('local')
@Requires({ env.INTEGRATION })
@Requires({ Boolean.valueOf(sys['integration-test']) })
class TestModeSpec extends Specification {

@LocalServerPort
Expand Down

0 comments on commit 0a9182e

Please sign in to comment.