Skip to content

Commit 52088aa

Browse files
test: Removes measure test
This test is creates unreliable CI since we can't ensure performance of the runner machine.
1 parent 767ca7f commit 52088aa

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

Tests/GraphQLTests/LanguageTests/LexerTests.swift

-9
Original file line numberDiff line numberDiff line change
@@ -214,15 +214,6 @@ class LexerTests: XCTestCase {
214214
XCTAssertEqual(token, expected)
215215
}
216216

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-
226217
func testStringErrors() throws {
227218
XCTAssertThrowsError(try lexOne("\""))
228219
// "Syntax Error GraphQL (1:2) Unterminated string"

0 commit comments

Comments
 (0)