Integration tests in Gradle 7.3

How do you add the project’s compile and runtime classpath using the new test suite plugin? Surely there’s a better way that adding them one by one again just for the new suite.
More to the point, I’m looking for the equivalent of:
configurations[integrationTest.implementationConfigurationName].extendsFrom(configurations.testImplementation.get())

What’s the reason they’re not added by default?

I’m using the exact snippet from the release notes to configure my integration tests, but it’s perfectly useless since my dependencies aren’t there :frowning:

TIA