We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2ad8782 + 92b7374 commit 7a96203Copy full SHA for 7a96203
test/driver.js
@@ -577,6 +577,13 @@ class Driver {
577
return;
578
}
579
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
+
587
this._log('Loading file "' + task.file + '"\n');
588
589
try {
test/test_manifest.json
@@ -10749,7 +10749,8 @@
10749
"rounds": 1,
10750
"type": "eq",
10751
"link": true,
10752
- "talos": false
+ "talos": false,
10753
+ "noChrome": true
10754
},
10755
{
10756
"id": "issue18956",
0 commit comments