department-of-veterans-affairs/vets-website

View on GitHub
src/platform/testing/e2e/timeouts.js

Summary

Maintainability
A
0 mins
Test Coverage
const timeouts = {
  normal: 2000, // The normal timeout to use. For most opreations w/o a server roundtrip, this should be more than fast enough.
  slow: 5000, // A slow timeout incase the page is doing something complex.
  verySlow: 20000,
};

module.exports = timeouts;