Skip to content

Commit

Permalink
Merge pull request #19024 from calixteman/disable_test_chrome
Browse files Browse the repository at this point in the history
Disable ref test 'issue18896' for Chrome because it takes too much time
  • Loading branch information
calixteman authored Nov 11, 2024
2 parents 2ad8782 + 92b7374 commit 7a96203
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions test/driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,13 @@ class Driver {
return;
}

if (task.noChrome && window?.chrome) {
this._log(`Skipping file "${task.file}" (because on Chrome)\n`);
this.currentTask++;
this._nextTask();
return;
}

this._log('Loading file "' + task.file + '"\n');

try {
Expand Down
3 changes: 2 additions & 1 deletion test/test_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -10749,7 +10749,8 @@
"rounds": 1,
"type": "eq",
"link": true,
"talos": false
"talos": false,
"noChrome": true
},
{
"id": "issue18956",
Expand Down

0 comments on commit 7a96203

Please sign in to comment.