Load tests as code

An introduction to k6

Nicole van der Hoeven

This is pretty cool

h2

h3

Some italicized text

import http from 'k6/http';
import { sleep, check } from 'k6';

export default function () {
    let res = http.get('https://test.k6.io', {tags: { name: '01_Home' }});
    check(res, {
      'is status 200': (r) => r.status === 200,
      'text verification': (r) => r.body.includes("Collection of simple web-pages suitable for load testing")
    });
    sleep(Math.random() * 5);
}

Isa

Deux

Drie

What’s a vertical slide?

Oh cool!

Aquí un video

Photo by
Lucrezia Carnelos
on Unsplash.

Maybe I should actually write this presentation now.