8 lines
147 B
JavaScript
8 lines
147 B
JavaScript
|
/** format */
|
||
|
|
||
|
/**
|
||
|
* Increase the default timeout to 10s
|
||
|
*/
|
||
|
let jestTimeoutInMilliSeconds = 10000;
|
||
|
jest.setTimeout( jestTimeoutInMilliSeconds );
|