We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6adbfd1 commit 3ab54b7Copy full SHA for 3ab54b7
tools/gulp/tasks/screenshots.ts
@@ -34,7 +34,10 @@ const FIREBASE_IMAGE = `${TEMP_FOLDER}/screenshot/images`;
34
const FIREBASE_DATA_GOLDENS = `screenshot/goldens`;
35
const FIREBASE_STORAGE_GOLDENS = 'goldens';
36
37
+/** Time in ms until the process will be exited if the last action took too long (6 minutes). */
38
const lastActionTimeout = 1000 * 60 * 6;
39
+
40
+/** Time in ms that specifies how often the last action should be checked (45 seconds). */
41
const lastActionRefreshInterval = 1000 * 45;
42
43
/** Task which upload screenshots generated from e2e test. */
0 commit comments