We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b499208 commit c63c150Copy full SHA for c63c150
docs/sources/k6/next/testing-guides/test-types/smoke-testing.md
@@ -56,6 +56,7 @@ export const options = {
56
57
export default () => {
58
const urlRes = http.get('https://quickpizza.grafana.com');
59
+ check(urlRes, { 'status returned 200': (r) => r.status == 200 })
60
sleep(1);
61
// MORE STEPS
62
// Here you can have more steps or complex script
0 commit comments