Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bug] document shortcut element properties lose their children #283

Open
TechQuery opened this issue Jul 31, 2024 · 0 comments
Open

[bug] document shortcut element properties lose their children #283

TechQuery opened this issue Jul 31, 2024 · 0 comments

Comments

@TechQuery
Copy link
Contributor

TechQuery commented Jul 31, 2024

What happened

@WebReflection the following test case in Jest:

it('should be the same <body /> element', () => {
  const { document } = parseHTML(`<body><div class="whatever"></div></body>`);
  const body = document.querySelector('body'),

  expect(body).toBe(document.body);
});

outputs this kind of result:

- Expected  - 0
+ Received  + 6

+ <body>
+   <head />
    <body />
+   <div
+     class="whatever"
+   />
+ </body>

Real world

https://github.com/freeCodeCamp-China/article-webpage-to-markdown-action/pull/32/files#diff-5cdb43bc3113537f238168168c0a52ab488039b63c51cbfc7938b22a2b589c53

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant