We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
measure
1 parent 767ca7f commit 52088aaCopy full SHA for 52088aa
Tests/GraphQLTests/LanguageTests/LexerTests.swift
@@ -214,15 +214,6 @@ class LexerTests: XCTestCase {
214
XCTAssertEqual(token, expected)
215
}
216
217
- func testLongStrings() throws {
218
- measure {
219
- let token = try! lexOne("\"\(String(repeating: "123456", count: 10000))\"")
220
-
221
- XCTAssertEqual(token.start, 0)
222
- XCTAssertEqual(token.end, 60002)
223
- }
224
225
226
func testStringErrors() throws {
227
XCTAssertThrowsError(try lexOne("\""))
228
// "Syntax Error GraphQL (1:2) Unterminated string"
0 commit comments