Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Implement slowTestThreshold Cypress option #870

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion packages/server/lib/config.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ configKeys = toWords """
viewportWidth requestTimeout
viewportHeight responseTimeout
video taskTimeout
videoCompression
videoCompression slowTestThreshold
videoUploadOnPasses
watchForFileChanges
waitForAnimations resolvedNodeVersion
Expand Down Expand Up @@ -117,6 +117,7 @@ CONFIG_DEFAULTS = {
pageLoadTimeout: 60000
execTimeout: 60000
taskTimeout: 60000
slowTestThreshold: 5000
video: true
videoCompression: 32
videoUploadOnPasses: true
Expand Down Expand Up @@ -169,6 +170,7 @@ validationRules = {
requestTimeout: v.isNumber
responseTimeout: v.isNumber
supportFile: v.isStringOrFalse
slowTestThreshold: v.isNumber
taskTimeout: v.isNumber
testFiles: v.isStringOrArrayOfStrings
trashAssetsBeforeRuns: v.isBoolean
Expand Down
Loading