We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5729640 commit 087d47dCopy full SHA for 087d47d
1 file changed
tests/run-browser.mjs
@@ -294,14 +294,6 @@ async function inDepthPageTest(driver) {
294
return a.toLowerCase().localeCompare(b.toLowerCase());
295
});
296
297
- const nonDefaultIds = benchmarkNames.filter(name => !benchmarkData.get(name).includes("default"));
298
- for (const id of nonDefaultIds) {
299
- const description = descriptions.get(id);
300
- if (description && description.cssClass !== "non-default") {
301
- sectionErrors.push(`Expected non-default benchmark '${id}' to have CSS class 'non-default' but got '${description.cssClass}'`);
302
- }
303
304
-
305
const missingIds = benchmarkNames.filter(name => !descriptions.has(name));
306
if (missingIds.length > 0) {
307
sectionErrors.push(`Missing in-depth.html info section: ${JSON.stringify(missingIds, undefined, 2)}`);
0 commit comments