As such, it isn't supported by the k6 team, and may break in the future. USE AT YOUR OWN RISK!
To build a k6
binary with this extension, first ensure you have the prerequisites:
- Go toolchain
- Git
Then:
- Install
xk6
:
$ go install go.k6.io/xk6/cmd/xk6@latest
- Build the binary:
$ xk6 build --with github.com/dgzlopes/xk6-notification@latest
import http from 'k6/http';
import notification from 'k6/x/notification';
const url = 'slack://token-a/token-b/token-c';
export function setup() {
notification.send(url, 'Starting test');
}
export default function () {
http.get('http://test.k6.io');
}
export function teardown(data) {
notification.send(url, 'Finishing test');
}
For a full documentation of the api and how to use it, see the official shoutrrr documentation.