Skip to content

Commit 57b6245

Browse files
add test
1 parent c7d51ba commit 57b6245

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

resources/tests.mjs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,18 @@ Suites.push({
265265
],
266266
});
267267

268+
Suites.push({
269+
name: "TodoMVC-WebComponents-PostMessage",
270+
url: "resources/todomvc/vanilla-examples/javascript-web-components/dist/index.html",
271+
tags: ["experimental", "todomvc", "webcomponents"],
272+
disabled: true,
273+
async prepare() {},
274+
type: "remote",
275+
/* config: {
276+
name: "default", // optional param to target non-default tests locally
277+
}, */
278+
});
279+
268280
Suites.push({
269281
name: "TodoMVC-WebComponents-Complex-DOM",
270282
url: "resources/todomvc/vanilla-examples/javascript-web-components-complex/dist/index.html",

resources/todomvc/vanilla-examples/javascript-web-components/dist/src/workload-test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { BenchmarkStep, BenchmarkSuite } from "./benchmark.mjs";
22
import { getAllElements, getElement } from "./helpers.mjs";
3-
import { getTodoText, numberOfItemsToAdd, defaultLanguage } from "./todomvc.mjs";
3+
import { getTodoText, numberOfItemsToAdd, defaultLanguage } from "./translations.mjs";
44

55
export const appName = "todomvc-postmessage";
66
export const appVersion = "1.0.0";

resources/todomvc/vanilla-examples/javascript-web-components/src/workload-test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { BenchmarkStep, BenchmarkSuite } from "/node_modules/speedometer-utils/benchmark.mjs";
22
import { getAllElements, getElement } from "/node_modules/speedometer-utils/helpers.mjs";
3-
import { getTodoText, numberOfItemsToAdd, defaultLanguage } from "/node_modules/speedometer-utils/todomvc.mjs";
3+
import { getTodoText, numberOfItemsToAdd, defaultLanguage } from "/node_modules/speedometer-utils/translations.mjs";
44

55
export const appName = "todomvc-postmessage";
66
export const appVersion = "1.0.0";

0 commit comments

Comments
 (0)