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

バックエンド系のテストが落ちている #14145

Closed
1 task done
samunohito opened this issue Jul 7, 2024 · 1 comment · Fixed by #14146
Closed
1 task done

バックエンド系のテストが落ちている #14145

samunohito opened this issue Jul 7, 2024 · 1 comment · Fixed by #14146
Assignees
Labels
⚠️bug? This might be a bug

Comments

@samunohito
Copy link
Member

💡 Summary

8e1d94c 以降、テストが落ちてしまっている模様です。
おそらく、parse5配下にあるTreeAdapterのimportが上手くいっていないのかと

🥰 Expected Behavior

バックエンド系の一部テストがfailとなっている

🤬 Actual Behavior

テストがすべてpassとなる

📝 Steps to Reproduce

💻 Frontend Environment

-

🛰 Backend Environment (for server admin)

-

Do you want to address this bug yourself?

  • Yes, I will patch the bug myself and send a pull request
@samunohito samunohito added the ⚠️bug? This might be a bug label Jul 7, 2024
@samunohito
Copy link
Member Author

samunohito commented Jul 7, 2024

そもそも、parse5/dist/tree-adapters/default.jsで定義されている各typeはパッケージの外にexportされていないようです。
なので、修正前のようにnode_modulesを直接見に行ってimportする形がとられていたのだと推測しています。

DefaultTreeAdapterMapはパッケージ外からも見えるようなので、それを利用してimport出来なくなった型や変数たちを以下のように再定義すればよさそうです。

const treeAdapter = parse5.defaultTreeAdapter;
type Node = DefaultTreeAdapterMap['node'];
type ChildNode = DefaultTreeAdapterMap['childNode'];

参考:
inikulin/parse5#1103

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
⚠️bug? This might be a bug
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant