We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
8e1d94c 以降、テストが落ちてしまっている模様です。 おそらく、parse5配下にあるTreeAdapterのimportが上手くいっていないのかと
バックエンド系の一部テストがfailとなっている
テストがすべてpassとなる
-
The text was updated successfully, but these errors were encountered:
そもそも、parse5/dist/tree-adapters/default.jsで定義されている各typeはパッケージの外にexportされていないようです。 なので、修正前のようにnode_modulesを直接見に行ってimportする形がとられていたのだと推測しています。
parse5/dist/tree-adapters/default.js
DefaultTreeAdapterMapはパッケージ外からも見えるようなので、それを利用してimport出来なくなった型や変数たちを以下のように再定義すればよさそうです。
const treeAdapter = parse5.defaultTreeAdapter; type Node = DefaultTreeAdapterMap['node']; type ChildNode = DefaultTreeAdapterMap['childNode'];
参考: inikulin/parse5#1103
Sorry, something went wrong.
samunohito
Successfully merging a pull request may close this issue.
💡 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?
The text was updated successfully, but these errors were encountered: