Skip to content

Commit

Permalink
Regenerate gloabl docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattphillips committed Oct 12, 2018
1 parent a0795e4 commit ddf8e35
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions website/versioned_docs/version-23.0/GlobalAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,8 @@ Also under the alias: `it.each(table)(name, fn)` and `` it.each`table`(name, fn)

Use `test.each` if you keep duplicating the same test with different data. `test.each` allows you to write the test once and pass data in.

_Note_ `test`s must be defined synchronously this means the `table` cannot be set inside of a `beforeEach` / `beforeAll`.

`test.each` is available with two APIs:

#### 1. `test.each(table)(name, fn)`
Expand Down Expand Up @@ -549,6 +551,8 @@ Also under the aliases: `it.only.each(table)(name, fn)`, `fit.each(table)(name,

Use `test.only.each` if you want to only run specific tests with different test data.

_Note_ focussed `test`s must be defined synchronously this means the `table` cannot be set inside of a `beforeEach` / `beforeAll`.

`test.only.each` is available with two APIs:

#### `test.only.each(table)(name, fn)`
Expand Down Expand Up @@ -611,6 +615,8 @@ Also under the aliases: `it.skip.each(table)(name, fn)`, `xit.each(table)(name,

Use `test.skip.each` if you want to stop running a collection of data driven tests.

_Note_ skipped `test`s must be defined synchronously this means the `table` cannot be set inside of a `beforeEach` / `beforeAll`.

`test.skip.each` is available with two APIs:

#### `test.skip.each(table)(name, fn)`
Expand Down
6 changes: 6 additions & 0 deletions website/versioned_docs/version-23.2/GlobalAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,8 @@ Also under the alias: `it.each(table)(name, fn)` and `` it.each`table`(name, fn)

Use `test.each` if you keep duplicating the same test with different data. `test.each` allows you to write the test once and pass data in.

_Note_ `test`s must be defined synchronously this means the `table` cannot be set inside of a `beforeEach` / `beforeAll`.

`test.each` is available with two APIs:

#### 1. `test.each(table)(name, fn)`
Expand Down Expand Up @@ -555,6 +557,8 @@ Also under the aliases: `it.only.each(table)(name, fn)`, `fit.each(table)(name,

Use `test.only.each` if you want to only run specific tests with different test data.

_Note_ focussed `test`s must be defined synchronously this means the `table` cannot be set inside of a `beforeEach` / `beforeAll`.

`test.only.each` is available with two APIs:

#### `test.only.each(table)(name, fn)`
Expand Down Expand Up @@ -617,6 +621,8 @@ Also under the aliases: `it.skip.each(table)(name, fn)`, `xit.each(table)(name,

Use `test.skip.each` if you want to stop running a collection of data driven tests.

_Note_ skipped `test`s must be defined synchronously this means the `table` cannot be set inside of a `beforeEach` / `beforeAll`.

`test.skip.each` is available with two APIs:

#### `test.skip.each(table)(name, fn)`
Expand Down
6 changes: 6 additions & 0 deletions website/versioned_docs/version-23.5/GlobalAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,8 @@ Also under the alias: `it.each(table)(name, fn)` and `` it.each`table`(name, fn)

Use `test.each` if you keep duplicating the same test with different data. `test.each` allows you to write the test once and pass data in.

_Note_ `test`s must be defined synchronously this means the `table` cannot be set inside of a `beforeEach` / `beforeAll`.

`test.each` is available with two APIs:

#### 1. `test.each(table)(name, fn, timeout)`
Expand Down Expand Up @@ -561,6 +563,8 @@ Also under the aliases: `it.only.each(table)(name, fn)`, `fit.each(table)(name,

Use `test.only.each` if you want to only run specific tests with different test data.

_Note_ focussed `test`s must be defined synchronously this means the `table` cannot be set inside of a `beforeEach` / `beforeAll`.

`test.only.each` is available with two APIs:

#### `test.only.each(table)(name, fn)`
Expand Down Expand Up @@ -623,6 +627,8 @@ Also under the aliases: `it.skip.each(table)(name, fn)`, `xit.each(table)(name,

Use `test.skip.each` if you want to stop running a collection of data driven tests.

_Note_ skipped `test`s must be defined synchronously this means the `table` cannot be set inside of a `beforeEach` / `beforeAll`.

`test.skip.each` is available with two APIs:

#### `test.skip.each(table)(name, fn)`
Expand Down

0 comments on commit ddf8e35

Please sign in to comment.