Sha256: 16d26d0ce1c3d121b8a901d344765ea94c88a52c50025b1e1e743b004bea898c
Contents?: true
Size: 478 Bytes
Versions: 7
Compression:
Stored size: 478 Bytes
Contents
// runs before each test to make sure console.error output will // fail a test (i.e. default PropType missing). Check the error // output and traceback for actual error. global.console.error = (error, stack) => { /* eslint-disable-next-line no-console */ if (stack) console.log(stack); // Prints out original stack trace throw new Error(error); }; // Increase jest timeout as some tests using multiple http mocks can time out on CI systems. jest.setTimeout(10000);
Version data entries
7 entries across 7 versions & 2 rubygems