Skip to content

Commit

Permalink
docs/Configuration: Correct signature for testRunner (#9553)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersk committed Feb 11, 2020
1 parent 017264f commit 3aef448
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docs/Configuration.md
Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion website/versioned_docs/version-22.x/Configuration.md
Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion website/versioned_docs/version-23.x/Configuration.md
Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion website/versioned_docs/version-24.x/Configuration.md
Expand Up @@ -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,
Expand Down
3 changes: 2 additions & 1 deletion website/versioned_docs/version-25.1/Configuration.md
Expand Up @@ -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,
Expand Down

0 comments on commit 3aef448

Please sign in to comment.