diff --git a/resources/tests.mjs b/resources/tests.mjs index 3ea3ba174..9d4e9a841 100644 --- a/resources/tests.mjs +++ b/resources/tests.mjs @@ -90,6 +90,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(); @@ -362,6 +363,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(); @@ -391,6 +393,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(); @@ -420,6 +423,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"); }, @@ -482,7 +486,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(); @@ -609,7 +612,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(); @@ -640,7 +642,6 @@ Suites.push({ name: "TodoMVC-Vue-Complex-DOM", url: "todomvc/architecture-examples/vue-complex/dist/index.html", tags: ["todomvc", "complex", "complex-default"], - disabled: true, async prepare(page) { const element = await page.waitForElement(".new-todo"); element.focus(); @@ -701,7 +702,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(); @@ -731,7 +731,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(); @@ -761,7 +760,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"); },