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 169960b commit 44e7034Copy full SHA for 44e7034
browserstack-report-action/src/main.js
@@ -16,14 +16,14 @@ async function run() {
16
17
let reportProcessor;
18
19
- if(userTimeout < 20 || userTimeout > 600) {
+ if (userTimeout < 20 || userTimeout > 600) {
20
const report = {
21
report: {
22
basicHtml: `<pre>Invalid user timeout value: ${userTimeout}. It should be between 20 and 600 seconds for Browserstack reports</pre>`,
23
},
24
- }
+ };
25
reportProcessor = new ReportProcessor(report);
26
- return ;
+ return;
27
}
28
29
const authHeader = `Basic ${Buffer.from(`${username}:${accessKey}`).toString('base64')}`;
0 commit comments