Skip to content

Commit 4173e4d

Browse files
authored
Enable complex DOM benchmarks execution in official speedometer run (#271)
1 parent a268ec4 commit 4173e4d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

resources/tests.mjs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ Suites.push({
8989
name: "TodoMVC-JavaScript-ES6-Webpack",
9090
url: "todomvc/vanilla-examples/javascript-es6-webpack/dist/index.html",
9191
tags: ["todomvc"],
92+
disabled: true,
9293
async prepare(page) {
9394
const element = await page.waitForElement(".new-todo");
9495
element.focus();
@@ -152,6 +153,7 @@ Suites.push({
152153
name: "TodoMVC-React",
153154
url: "todomvc/architecture-examples/react/dist/index.html#/home",
154155
tags: ["todomvc"],
156+
disabled: true,
155157
async prepare(page) {
156158
const element = await page.waitForElement(".new-todo");
157159
element.focus();
@@ -272,6 +274,7 @@ Suites.push({
272274
name: "TodoMVC-Angular",
273275
url: "todomvc/architecture-examples/angular/dist/index.html",
274276
tags: ["todomvc"],
277+
disabled: true,
275278
async prepare(page) {
276279
const element = await page.waitForElement(".new-todo");
277280
element.focus();
@@ -361,6 +364,7 @@ Suites.push({
361364
name: "TodoMVC-Preact",
362365
url: "todomvc/architecture-examples/preact/dist/index.html#/home",
363366
tags: ["todomvc"],
367+
disabled: true,
364368
async prepare(page) {
365369
const element = await page.waitForElement(".new-todo");
366370
element.focus();
@@ -390,6 +394,7 @@ Suites.push({
390394
name: "TodoMVC-Svelte",
391395
url: "todomvc/architecture-examples/svelte/dist/index.html",
392396
tags: ["todomvc"],
397+
disabled: true,
393398
async prepare(page) {
394399
const element = await page.waitForElement(".new-todo");
395400
element.focus();
@@ -419,6 +424,7 @@ Suites.push({
419424
name: "TodoMVC-Lit",
420425
url: "todomvc/architecture-examples/lit/dist/index.html",
421426
tags: ["todomvc", "webcomponents"],
427+
disabled: true,
422428
async prepare(page) {
423429
await page.waitForElement("todo-app");
424430
},
@@ -481,7 +487,6 @@ Suites.push({
481487
name: "TodoMVC-JavaScript-ES6-Webpack-Complex-DOM",
482488
url: "todomvc/vanilla-examples/javascript-es6-webpack-complex/dist/index.html",
483489
tags: ["todomvc", "complex", "complex-default"],
484-
disabled: true,
485490
async prepare(page) {
486491
const element = await page.waitForElement(".new-todo");
487492
element.focus();
@@ -608,7 +613,6 @@ Suites.push({
608613
name: "TodoMVC-Angular-Complex-DOM",
609614
url: "todomvc/architecture-examples/angular-complex/dist/index.html",
610615
tags: ["todomvc", "complex", "complex-default"],
611-
disabled: true,
612616
async prepare(page) {
613617
const element = await page.waitForElement(".new-todo");
614618
element.focus();
@@ -700,7 +704,6 @@ Suites.push({
700704
name: "TodoMVC-Preact-Complex-DOM",
701705
url: "todomvc/architecture-examples/preact-complex/dist/index.html#/home",
702706
tags: ["todomvc", "complex", "complex-default"],
703-
disabled: true,
704707
async prepare(page) {
705708
const element = await page.waitForElement(".new-todo");
706709
element.focus();
@@ -730,7 +733,6 @@ Suites.push({
730733
name: "TodoMVC-Svelte-Complex-DOM",
731734
url: "todomvc/architecture-examples/svelte-complex/dist/index.html",
732735
tags: ["todomvc", "complex", "complex-default"],
733-
disabled: true,
734736
async prepare(page) {
735737
const element = await page.waitForElement(".new-todo");
736738
element.focus();
@@ -760,7 +762,6 @@ Suites.push({
760762
name: "TodoMVC-Lit-Complex-DOM",
761763
url: "todomvc/architecture-examples/lit-complex/dist/index.html",
762764
tags: ["todomvc", "webcomponents", "complex", "complex-default"],
763-
disabled: true,
764765
async prepare(page) {
765766
await page.waitForElement("todo-app");
766767
},

0 commit comments

Comments
 (0)