Skip to content

Commit 7a96203

Browse files
authored
Merge pull request #19024 from calixteman/disable_test_chrome
Disable ref test 'issue18896' for Chrome because it takes too much time
2 parents 2ad8782 + 92b7374 commit 7a96203

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

test/driver.js

+7
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,13 @@ class Driver {
577577
return;
578578
}
579579

580+
if (task.noChrome && window?.chrome) {
581+
this._log(`Skipping file "${task.file}" (because on Chrome)\n`);
582+
this.currentTask++;
583+
this._nextTask();
584+
return;
585+
}
586+
580587
this._log('Loading file "' + task.file + '"\n');
581588

582589
try {

test/test_manifest.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -10749,7 +10749,8 @@
1074910749
"rounds": 1,
1075010750
"type": "eq",
1075110751
"link": true,
10752-
"talos": false
10752+
"talos": false,
10753+
"noChrome": true
1075310754
},
1075410755
{
1075510756
"id": "issue18956",

0 commit comments

Comments
 (0)