Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 20, 2024
1 parent b62f4c8 commit a41a4c0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe("DateTimePickerPlugin", () => {
const host = document.createElement("div");
const props = {
host,
value: "", // Empty string instead of undefined since type T = string
value: "", // Empty string instead of undefined since type T = string
setValue: () => {},
data: {
label: null,
Expand All @@ -22,7 +22,7 @@ describe("DateTimePickerPlugin", () => {
const { container } = render(plugin.render(props));

// For debugging, log the rendered HTML
console.log('Rendered HTML:', container.innerHTML);
console.log("Rendered HTML:", container.innerHTML);

// Check if the component renders at all
expect(container.innerHTML).not.toBe("");
Expand Down

0 comments on commit a41a4c0

Please sign in to comment.