Skip to content

Commit

Permalink
add and update test suites
Browse files Browse the repository at this point in the history
fix rebase

add back removed suites

enable and remove test suites

Revert "enable and remove test suites"

This reverts commit e318f41.

disable suites properly

disable javascript-es6-webpack standalone

enable complex version lit and disable standalone
  • Loading branch information
issackjohn committed Nov 21, 2023
1 parent 4316b5f commit 0486357
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions resources/tests.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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");
},
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down Expand Up @@ -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");
},
Expand Down

0 comments on commit 0486357

Please sign in to comment.