!!! note This module is INCUBATING. While it is ready for use and operational in the current version of Testcontainers, it is possible that it may receive breaking changes in the future. See our contributing guidelines for more information on our incubating modules policy.
Testcontainers module for k6.
k6 is an extensible reliability testing tool built for developer happiness.
You can start a K6 container instance from any Java application by using:
Setup the container inside_block:standard_k6
The test above uses a simple k6 script, test.js, with command line options and an injected script variable.
Once the container is started, you can wait for the test results to be collected:
Wait for test results inside_block:wait
Create a simple k6 test script to be executed as part of your tests:
Content of scripts/test.js inside_block:access_script_vars
Add the following dependency to your pom.xml/build.gradle file:
=== "Gradle"
groovy testImplementation "org.testcontainers:testcontainers-k6:{{latest_version}}"
=== "Maven"
xml <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers-k6</artifactId> <version>{{latest_version}}</version> <scope>test</scope> </dependency>