From 45b6e1ff98da382370e0b5890149028ad98d43bc Mon Sep 17 00:00:00 2001 From: Ruben Gees Date: Tue, 25 Jun 2024 10:58:05 +0200 Subject: [PATCH] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fae5145..b4dca3a 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ its features. As of the current version, these are the supported properties: | postRunners | An array of post runner classes to use. | `postRunners = ["com.example.ExamplePostRunner"]` | | preRunnerScripts | An array of paths to groovy pre runner scripts to use. | `preRunnerScripts = [./scripts/pre_runner.groovy]` | | postRunnerScripts | An array of paths to groovy post runner scripts to use. | `postRunnerScripts = [./scripts/post_runner.groovy]` | -| preTestTasks | An array of tasks to execute after the test. The order of the entries determines the order of execution. | `postTestTasks = ["DATABASE_SCRIPTS", "POST_RUNNERS", "POST_RUNNER_SCRIPTS"]` | +| postTestTasks | An array of tasks to execute after the test. The order of the entries determines the order of execution. | `postTestTasks = ["DATABASE_SCRIPTS", "POST_RUNNERS", "POST_RUNNER_SCRIPTS"]` | | headers | A map of headers to use for requests. | `headers = { "some-header": "value" }` | | title | An optional alternative title for the test. | `title = "Something"` | | expectedResponseCode | An optional expected HTTP response code. Default is the 200-range. | `expectedResponseCode = 400` |