mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
10a2cc3781
This fixes a build error with Swift 6.0 on macOS.
24 lines
539 B
Swift
24 lines
539 B
Swift
/*
|
|
* Copyright (c) 2024, Andrew Kaster <andrew@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
import AK
|
|
import Testing
|
|
import Web
|
|
|
|
@Suite
|
|
struct TestLibWebSwiftBindings {
|
|
|
|
@Test func enumsAreBound() {
|
|
#expect(Web.DOM.NodeType.ELEMENT_NODE.rawValue == 1)
|
|
|
|
#expect(Web.Bindings.NavigationType.Push.rawValue == 0)
|
|
|
|
let end = Web.Bindings.idl_enum_to_string(Web.Bindings.ScrollLogicalPosition.End)
|
|
let end_string = Swift.String(akString: end)!
|
|
|
|
#expect(end_string == "end")
|
|
}
|
|
}
|