When I run my integration test suite with grails test-app -integration, all of the tests pass. However, when I run them with grails test-app, the unit tests pass, but the integration tests fail with the error:
Cannot set readonly property: requestAttributes for class:
org.springframework.web.context.request.RequestContextHolder
Now, I've searched for all instances of RequestContextHolder and have not been able to find a spot where this is being set by the tests/app.
My question is, what is different between running just the integration tests vs the entire test suite? I've run into instances where tests will fail because say, registerMetaClass was not called in the previous test, but this situation seems different since it's an entire suite.
