Skip to content

Commit

Permalink
Enable complex DOM benchmarks execution in official speedometer run (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
issackjohn authored Dec 21, 2023
1 parent a268ec4 commit 4173e4d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions resources/tests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ Suites.push({
name: "TodoMVC-JavaScript-ES6-Webpack",
url: "todomvc/vanilla-examples/javascript-es6-webpack/dist/index.html",
tags: ["todomvc"],
disabled: true,
async prepare(page) {
const element = await page.waitForElement(".new-todo");
element.focus();
Expand Down Expand Up @@ -152,6 +153,7 @@ Suites.push({
name: "TodoMVC-React",
url: "todomvc/architecture-examples/react/dist/index.html#/home",
tags: ["todomvc"],
disabled: true,
async prepare(page) {
const element = await page.waitForElement(".new-todo");
element.focus();
Expand Down Expand Up @@ -272,6 +274,7 @@ Suites.push({
name: "TodoMVC-Angular",
url: "todomvc/architecture-examples/angular/dist/index.html",
tags: ["todomvc"],
disabled: true,
async prepare(page) {
const element = await page.waitForElement(".new-todo");
element.focus();
Expand Down Expand Up @@ -361,6 +364,7 @@ Suites.push({
name: "TodoMVC-Preact",
url: "todomvc/architecture-examples/preact/dist/index.html#/home",
tags: ["todomvc"],
disabled: true,
async prepare(page) {
const element = await page.waitForElement(".new-todo");
element.focus();
Expand Down Expand Up @@ -390,6 +394,7 @@ Suites.push({
name: "TodoMVC-Svelte",
url: "todomvc/architecture-examples/svelte/dist/index.html",
tags: ["todomvc"],
disabled: true,
async prepare(page) {
const element = await page.waitForElement(".new-todo");
element.focus();
Expand Down Expand Up @@ -419,6 +424,7 @@ Suites.push({
name: "TodoMVC-Lit",
url: "todomvc/architecture-examples/lit/dist/index.html",
tags: ["todomvc", "webcomponents"],
disabled: true,
async prepare(page) {
await page.waitForElement("todo-app");
},
Expand Down Expand Up @@ -481,7 +487,6 @@ Suites.push({
name: "TodoMVC-JavaScript-ES6-Webpack-Complex-DOM",
url: "todomvc/vanilla-examples/javascript-es6-webpack-complex/dist/index.html",
tags: ["todomvc", "complex", "complex-default"],
disabled: true,
async prepare(page) {
const element = await page.waitForElement(".new-todo");
element.focus();
Expand Down Expand Up @@ -608,7 +613,6 @@ Suites.push({
name: "TodoMVC-Angular-Complex-DOM",
url: "todomvc/architecture-examples/angular-complex/dist/index.html",
tags: ["todomvc", "complex", "complex-default"],
disabled: true,
async prepare(page) {
const element = await page.waitForElement(".new-todo");
element.focus();
Expand Down Expand Up @@ -700,7 +704,6 @@ Suites.push({
name: "TodoMVC-Preact-Complex-DOM",
url: "todomvc/architecture-examples/preact-complex/dist/index.html#/home",
tags: ["todomvc", "complex", "complex-default"],
disabled: true,
async prepare(page) {
const element = await page.waitForElement(".new-todo");
element.focus();
Expand Down Expand Up @@ -730,7 +733,6 @@ Suites.push({
name: "TodoMVC-Svelte-Complex-DOM",
url: "todomvc/architecture-examples/svelte-complex/dist/index.html",
tags: ["todomvc", "complex", "complex-default"],
disabled: true,
async prepare(page) {
const element = await page.waitForElement(".new-todo");
element.focus();
Expand Down Expand Up @@ -760,7 +762,6 @@ Suites.push({
name: "TodoMVC-Lit-Complex-DOM",
url: "todomvc/architecture-examples/lit-complex/dist/index.html",
tags: ["todomvc", "webcomponents", "complex", "complex-default"],
disabled: true,
async prepare(page) {
await page.waitForElement("todo-app");
},
Expand Down

0 comments on commit 4173e4d

Please sign in to comment.