openrunner-rs 1.0.1

A Rust library for running OpenScript
Documentation
1
2
3
4
5
6
7
8
9
// K6 load test script (if your application has HTTP endpoints)
import http from 'k6/http';
import { check, sleep } from 'k6';

export let options = {
  stages: [
    { duration: '30s', target: 20 }
  ]
};