1# Integration tests 2 3This is a supplementary subproject of kotlinx.coroutines that provides 4integration tests. 5 6The tests are the following: 7* `NpmPublicationValidator` tests that version of NPM artifact is correct and that it has neither source nor package dependencies on atomicfu 8 In order for the test to work, one needs to run gradle with `-PdryRun=true`. 9 `-PdryRun` affects `npmPublish` so that it only provides a packed publication 10 and does not in fact attempt to send the build for publication. 11* `MavenPublicationValidator` depends on the published artifacts and tests artifacts binary content and absence of atomicfu in the classpath 12* `DebugAgentTest` checks that the coroutine debugger can be run as a Java agent. 13 14All the available tests can be run with `integration-testing:test`. 15