Skip to content

Commit e524430

Browse files
committed
adding limits in timeout
1 parent 74fc743 commit e524430

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

browserstack-report-action/dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38170,7 +38170,7 @@ async function run() {
3817038170
if (userTimeout < 20 || userTimeout > 600) {
3817138171
const report = {
3817238172
report: {
38173-
basicHtml: `<pre>Invalid user timeout value: ${userTimeout}. It should be between 20 and 600 seconds for Browserstack reports</pre>`,
38173+
basicHtml: `<pre>Invalid report timeout value: ${userTimeout}. It should be between 20 and 600 seconds for Browserstack reports</pre>`,
3817438174
},
3817538175
};
3817638176
reportProcessor = new ReportProcessor(report);

browserstack-report-action/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async function run() {
1919
if (userTimeout < 20 || userTimeout > 600) {
2020
const report = {
2121
report: {
22-
basicHtml: `<pre>Invalid user timeout value: ${userTimeout}. It should be between 20 and 600 seconds for Browserstack reports</pre>`,
22+
basicHtml: `<pre>Invalid report timeout value: ${userTimeout}. It should be between 20 and 600 seconds for Browserstack reports</pre>`,
2323
},
2424
};
2525
reportProcessor = new ReportProcessor(report);

0 commit comments

Comments
 (0)