-
Notifications
You must be signed in to change notification settings - Fork 410
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
Fix the Wasm integration tests and enable it for K2 #3641
Conversation
@@ -16,9 +16,6 @@ fun test(list: MutableList<Int>) = "list" | |||
@JsNonModule | |||
external fun <T> sorted(a: Array<T>): Boolean | |||
|
|||
// this declaration can be used to check deserialization of dynamic type | |||
external interface TextLinkProps: AnchorHTMLAttributes<HTMLAnchorElement> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was copied from Js integration test
but the import import react.dom.html.AnchorHTMLAttributes
was missed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couldn't we just add import here?
Or remove also other not used import org.w3c.dom.HTMLAnchorElement
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, AnchorHTMLAttributes
is from the kotlin-wrappers:kotlin-react
that is not published for Wasm.
@@ -16,9 +16,6 @@ fun test(list: MutableList<Int>) = "list" | |||
@JsNonModule | |||
external fun <T> sorted(a: Array<T>): Boolean | |||
|
|||
// this declaration can be used to check deserialization of dynamic type | |||
external interface TextLinkProps: AnchorHTMLAttributes<HTMLAnchorElement> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couldn't we just add import here?
Or remove also other not used import org.w3c.dom.HTMLAnchorElement
.
No description provided.