test: Remove temporary commonjs module mocks (#1910)
No issue created, but noticed issue here
ed0d489cda
### Changes
- Removes unused node module mocks and use commonjs plugin to import
modules in tests
- Fixes org form test after removing temporary stub
This commit is contained in:
parent
192737ea99
commit
aa961493fd
@ -1,6 +0,0 @@
|
|||||||
import { stub } from "sinon";
|
|
||||||
|
|
||||||
export default stub(() => ({
|
|
||||||
lighten: () => {},
|
|
||||||
darken: () => {},
|
|
||||||
}));
|
|
@ -1,3 +0,0 @@
|
|||||||
export default function slugify(value) {
|
|
||||||
return value;
|
|
||||||
}
|
|
@ -1,5 +1,5 @@
|
|||||||
import { expect, fixture, oneEvent } from "@open-wc/testing";
|
import { expect, fixture, oneEvent } from "@open-wc/testing";
|
||||||
import type { SlInput } from "@shoelace-style/shoelace";
|
import { serialize, type SlInput } from "@shoelace-style/shoelace";
|
||||||
import { html } from "lit/static-html.js";
|
import { html } from "lit/static-html.js";
|
||||||
import { restore, stub } from "sinon";
|
import { restore, stub } from "sinon";
|
||||||
|
|
||||||
@ -65,15 +65,23 @@ describe("btrix-org-form", () => {
|
|||||||
|
|
||||||
const form = el.shadowRoot!.querySelector<HTMLFormElement>("form")!;
|
const form = el.shadowRoot!.querySelector<HTMLFormElement>("form")!;
|
||||||
|
|
||||||
form
|
const orgName = form.querySelector<SlInput>('sl-input[name="orgName"]')!;
|
||||||
.querySelector('sl-input[name="orgName"]')
|
const orgSlug = form.querySelector<SlInput>('sl-input[name="orgSlug"]')!;
|
||||||
?.setAttribute("value", "Fake Org Name");
|
|
||||||
form
|
orgName.setAttribute("value", "Fake Org Name");
|
||||||
.querySelector('sl-input[name="orgSlug"]')
|
orgSlug.setAttribute("value", "fake-org-name");
|
||||||
?.setAttribute("value", "fake-org-name");
|
|
||||||
|
await orgName.updateComplete;
|
||||||
|
await orgSlug.updateComplete;
|
||||||
|
|
||||||
const listener = oneEvent(form, "submit");
|
const listener = oneEvent(form, "submit");
|
||||||
|
|
||||||
|
// HACK Not completely sure why this works, but without calling `serialize`
|
||||||
|
// the form will not be serialized in `org-form`.
|
||||||
|
// Maybe due the implementation with `Reflect`?
|
||||||
|
// https://github.com/shoelace-style/shoelace/blob/0aecf6959986817d9315df90c898da55a8a64290/src/utilities/form.ts#L12
|
||||||
|
serialize(form);
|
||||||
|
|
||||||
form.requestSubmit();
|
form.requestSubmit();
|
||||||
|
|
||||||
await el.updateComplete;
|
await el.updateComplete;
|
||||||
|
@ -49,6 +49,9 @@ export default {
|
|||||||
// web-test-runner expects es modules,
|
// web-test-runner expects es modules,
|
||||||
// include umd/commonjs modules here:
|
// include umd/commonjs modules here:
|
||||||
"node_modules/url-pattern/**/*",
|
"node_modules/url-pattern/**/*",
|
||||||
|
"node_modules/lodash/**/*",
|
||||||
|
"node_modules/color/**/*",
|
||||||
|
"node_modules/slugify/**/*",
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
importMapsPlugin({
|
importMapsPlugin({
|
||||||
@ -65,12 +68,6 @@ export default {
|
|||||||
"@shoelace-style/shoelace/dist/themes/light.css": fileURLToPath(
|
"@shoelace-style/shoelace/dist/themes/light.css": fileURLToPath(
|
||||||
new URL("./src/__mocks__/_empty.js", import.meta.url),
|
new URL("./src/__mocks__/_empty.js", import.meta.url),
|
||||||
),
|
),
|
||||||
color: fileURLToPath(
|
|
||||||
new URL("./src/__mocks__/color.js", import.meta.url),
|
|
||||||
),
|
|
||||||
slugify: fileURLToPath(
|
|
||||||
new URL("./src/__mocks__/slugify.js", import.meta.url),
|
|
||||||
),
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user