From 3aef4482c074a7655aa0ba79b03f32f246c585fc Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Tue, 11 Feb 2020 01:23:31 -0800 Subject: [PATCH] docs/Configuration: Correct signature for testRunner (#9553) --- docs/Configuration.md | 3 ++- website/versioned_docs/version-22.x/Configuration.md | 3 ++- website/versioned_docs/version-23.x/Configuration.md | 3 ++- website/versioned_docs/version-24.x/Configuration.md | 3 ++- website/versioned_docs/version-25.1/Configuration.md | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index b4e0f8a0819b..e6a190571d96 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -1056,7 +1056,8 @@ The test runner module must export a function with the following signature: ```ts function testRunner( - config: Config, + globalConfig: GlobalConfig, + config: ProjectConfig, environment: Environment, runtime: Runtime, testPath: string, diff --git a/website/versioned_docs/version-22.x/Configuration.md b/website/versioned_docs/version-22.x/Configuration.md index 4b6f4895044e..1721f443df71 100644 --- a/website/versioned_docs/version-22.x/Configuration.md +++ b/website/versioned_docs/version-22.x/Configuration.md @@ -809,7 +809,8 @@ The test runner module must export a function with the following signature: ```ts function testRunner( - config: Config, + globalConfig: GlobalConfig, + config: ProjectConfig, environment: Environment, runtime: Runtime, testPath: string, diff --git a/website/versioned_docs/version-23.x/Configuration.md b/website/versioned_docs/version-23.x/Configuration.md index 37e662ac5684..a1e156e88a47 100644 --- a/website/versioned_docs/version-23.x/Configuration.md +++ b/website/versioned_docs/version-23.x/Configuration.md @@ -878,7 +878,8 @@ The test runner module must export a function with the following signature: ```ts function testRunner( - config: Config, + globalConfig: GlobalConfig, + config: ProjectConfig, environment: Environment, runtime: Runtime, testPath: string, diff --git a/website/versioned_docs/version-24.x/Configuration.md b/website/versioned_docs/version-24.x/Configuration.md index d3b813361153..0b4a35e2be15 100644 --- a/website/versioned_docs/version-24.x/Configuration.md +++ b/website/versioned_docs/version-24.x/Configuration.md @@ -1041,7 +1041,8 @@ The test runner module must export a function with the following signature: ```ts function testRunner( - config: Config, + globalConfig: GlobalConfig, + config: ProjectConfig, environment: Environment, runtime: Runtime, testPath: string, diff --git a/website/versioned_docs/version-25.1/Configuration.md b/website/versioned_docs/version-25.1/Configuration.md index 9a511ef661b2..003daecaa4d2 100644 --- a/website/versioned_docs/version-25.1/Configuration.md +++ b/website/versioned_docs/version-25.1/Configuration.md @@ -1050,7 +1050,8 @@ The test runner module must export a function with the following signature: ```ts function testRunner( - config: Config, + globalConfig: GlobalConfig, + config: ProjectConfig, environment: Environment, runtime: Runtime, testPath: string,