Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.4 KB

File metadata and controls

39 lines (29 loc) · 1.4 KB

k6 Module

!!! 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.

Basic script execution

Execute a simple k6 test script, test.js, with commandline options and injected script variable.

Create a simple k6 test script to be executed as part of your tests:

Setup the container inside_block:standard_k6 Content of scripts/test.js inside_block:access_script_vars

Adding this module to your project dependencies

Add the following dependency to your pom.xml/build.gradle file:

=== "Gradle" groovy testImplementation "org.testcontainers:k6:{{latest_version}}" === "Maven" xml <dependency> <groupId>org.testcontainers</groupId> <artifactId>k6</artifactId> <version>{{latest_version}}</version> <scope>test</scope> </dependency>