Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions flow-typed/npm/jest_v23.x.x.js
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ declare var describe: {
* @param {table} table of Test
*/
each(
table: Array<Array<mixed>>
table: Array<Array<mixed> | mixed>
): (
name: JestTestName,
fn?: (...args: Array<any>) => ?Promise<mixed>
Expand All @@ -949,7 +949,7 @@ declare var it: {
* @param {table} table of Test
*/
each(
table: Array<Array<mixed>>
table: Array<Array<mixed> | mixed>
): (
name: JestTestName,
fn?: (...args: Array<any>) => ?Promise<mixed>
Expand All @@ -967,7 +967,7 @@ declare var it: {
timeout?: number
): {
each(
table: Array<Array<mixed>>
table: Array<Array<mixed> | mixed>
): (
name: JestTestName,
fn?: (...args: Array<any>) => ?Promise<mixed>
Expand Down Expand Up @@ -1003,7 +1003,7 @@ declare var it: {
* @param {table} table of Test
*/
each(
table: Array<Array<mixed>>
table: Array<Array<mixed> | mixed>
): (
name: JestTestName,
fn?: (...args: Array<any>) => ?Promise<mixed>
Expand Down