A seamless way to write functional tests in k6 with Playwright-compatible assertions.
⚠️ Note: This project is under active development. While it is functional, it is not yet ready for production use, expect bugs, and potential breaking changes.
- ✨ Write once, run anywhere: Copy-paste your Playwright test assertions directly into k6 - they'll work out of the box
- 🎯 Fail fast: Tests interrupt immediately when assertions fail, giving you quick, clear feedback
- 🎠Familiar API: Familiar API for anyone coming from Playwright, Deno, or Vite ecosystem
- 🔍 Clear error messages: Get detailed, actionable feedback when tests fail
k6-testing is available as a k6 jslib. It can be directly imported as a dependency in your k6 script.
import { expect } from "https://jslib.k6.io/k6-testing/0.2.0/index.js";
The following example demonstrates how to use k6-testing in a k6 script.
The module exposes the expect
function, which behaves in a similar way to
Playwright's expect
function.
To make an assertion, call expect(value)
and choose a matcher that reflects
the expectation.
import { expect } from "https://jslib.k6.io/k6-testing/0.2.0/index.js";
export default function () {
// Simple assertions
expect(response.status).toBe(200);
// Async assertions with retry (perfect for UI testing)
await expect(page.locator(".submit-button")).toBeEnabled();
}
For functional testing, metrics and performance are most likely irrelevant, and we recommend executing k6 functional tests in headless mode:
# Run k6 in headless mode
k6 run --no-summary --quiet examples/browser.js
# If any assertion/expectation fail, a non-zero exit code will be returned
echo $status
Use the same assertions you know from Playwright:
// These Playwright assertions work exactly the same in k6
await expect(page.locator(".button")).toBeVisible();
await expect(page.locator("input")).toHaveValue("test");
Perfect for UI testing, these assertions will retry until the assertion passes, or the assertion timeout is reached. Note that retrying assertions are async, so you must await them.
By default, the timeout for assertions is set to 5 seconds, and the polling interval is set to 100 milliseconds.
Assertion | Description |
---|---|
toBeChecked() |
Element is checked |
toBeDisabled() |
Element is disabled |
toBeEditable() |
Element is editable |
toBeEnabled() |
Element is enabled |
toBeHidden() |
Element is hidden |
toBeVisible() |
Element is visible |
toHaveValue(value) |
Element has specific value |
You can customize these values by passing an options object as the second argument to the assertion function:
await expect(page.locator(".button")).toBeVisible({
timeout: 10000,
interval: 500,
});
These assertions allow to test any conditions, but do not auto-retry.
Assertion | Description |
---|---|
toBe(expected) |
Strict equality comparison |
toBeCloseTo(number, precision?) |
Number comparison with precision |
toBeDefined() |
Asserts a value is defined |
toBeFalsy() |
Falsy value check |
toBeGreaterThan(number) |
Greater than comparison |
toBeGreaterThanOrEqual(number) |
Greater than or equal comparison |
toBeInstanceOf(expected) |
Asserts a value is an instance of a class |
toBeLessThan(number) |
Less than comparison |
toBeLessThanOrEqual(number) |
Less than or equal comparison |
toBeNaN() |
Asserts a value is NaN |
toBeNull() |
Asserts a value is null |
toBeTruthy() |
Asserts a value is truthy |
toBeUndefined() |
Asserts a value is undefined |
toEqual(expected) |
Deep equality comparison |
toHaveLength(expected) |
Asserts a value has a length property equal to expected |
You can create a new expect instance with the .configure
method. This will
allow you to configure the behavior of the assertions. The configuration is
applied to all assertions made using the expect instance.
The available configuration options are:
Option | Default | Environment variable | Description |
---|---|---|---|
colorize |
true | K6_TESTING_COLORIZE |
Whether to colorize the output of the expect function. |
display |
"pretty" | K6_TESTING_DISPLAY |
The display format to use. "pretty" (default) or "inline". |
timeout |
5000 | K6_TESTING_TIMEOUT |
Specific to retrying assertions. The timeout for assertions, in milliseconds. |
interval |
100 | K6_TESTING_INTERVAL |
Specific to retrying assertions. The polling interval for assertions, in milliseconds. |
export default function () {
// Create a new expect instance with the default configuration
const myExpect = expect.configure({
// Display assertions using an inline format, aimed towards making them more readable in logs
display: "inline",
// Disable colorization of the output of the expect function
colorize: false,
});
// Use myExpect instead of expect, and it will use the configured display format and colorization
await myExpect(true).toBe(false);
// Note that you're still free to use the default expect instance, and it will not be affected by the configuration
expect(true).toBe(false);
}
You can configure the default timeout and polling interval for assertions by
instantiating a new expect instance with the .configure
method.
export default function () {
const myExpect = new expect.configure({ timeout: 10000, interval: 500 });
// Use myExpect instead of expect, and it will use the configured timeout and interval
// for all assertions.
//
// In this specific case, the assertion will retry until the button is visible, or the timeout is reached: every
// 500ms, for a maximum of 10 seconds.
await myExpect(page.locator(".button")).toBeVisible();
}
import { expect } from "https://jslib.k6.io/k6-testing/0.2.0/index.js";
import http from "k6/http";
export function setup() {
// Ensure the API is up and running before running the tests
// If the response is not 200, the test will fail immediately with
// a non-zero exit code, display a user-friendly message, and stop the test.
const response = http.get("https://api.example.com/health");
expect(response.status).toBe(200);
}
export default function () {
const response = http.get("https://api.example.com/users");
expect(response.status).toBe(200);
const json = response.json();
expect(json.users).toBeDefined();
expect(json.users).toBeInstanceOf(Array);
expect(json.users[0].id).toBeGreaterThan(0);
}
import { expect } from "https://jslib.k6.io/k6-testing/0.2.0/index.js";
import { browser } from "k6/browser";
export const options = {
scenarios: {
ui: {
executor: "shared-iterations",
options: {
browser: {
type: "chromium",
},
},
},
},
};
export default async function () {
const page = await browser.newPage();
try {
// Navigate to the page
await page.goto("https://test.k6.io/my_messages.php");
// Type into the login input field: 'testlogin'
const loc = await page.locator('input[name="login"]');
await loc.type("testlogin");
// Assert that the login input field is visible
await expect(page.locator('input[name="login"]')).toBeVisible();
// Expecting this to fail as we have typed 'testlogin' into the input instead of 'foo'
await expect(page.locator('input[name="login"]')).toHaveValue("foo");
} finally {
await page.close();
}
}
We welcome contributions! Here's how you can help:
- Report Issues: File bugs or feature requests on our GitHub issues page
- Submit PRs: Code contributions are welcome
- Improve Docs: Documentation improvements are always valuable
k6-testing is built with Deno, and esbuild. Deno is used for the development of the library itself, as well as unit testing, and the output distributable files are built with esbuild.
The following commands are used throughout the development process:
deno task build
- Build the distributable filesdeno task release
- Build the distributable files in release modedeno test
- Run unit testsdeno task test
- Run integration testsdeno lint *.ts
- Report linting errorsdeno fmt *.ts
- Format the code
The following files are must known when working on the project:
mod.ts
- The main entry point for the expect library, defines the public APIexpect.ts
- The main entry point for the expect libraryexpectNonRetrying.ts
- Contains the non-retrying assertions definition and implementationexpectRetrying.ts
- Contains the retrying assertions definition and implementation- The
tests/
directory contains the integration tests for the expect library
During development, a typical workflow would consist in the following steps:
- Make changes to the code
- Run
deno fmt *.ts
to format the code - Run
deno lint *.ts
to report linting errors - Run
deno task build
to (verify) build the code - Run
deno test
to run unit tests - Run
deno task test
to run integration tests - (optional) import
dist/index.js
in a k6 script and run it withk6 run --no-summary --quiet <script>.js
to verify that the library works as expected