1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/e2e/tests/dynamic/doc/inner_text/set.fql

13 lines
278 B
Plaintext
Raw Normal View History

LET url = @dynamic
LET doc = DOCUMENT(url, true)
LET expected = `Hello`
INNER_TEXT_SET(doc, "body", expected)
LET actual = INNER_TEXT(doc, "body")
LET r1 = '(\s|\")'
LET r2 = '(\n|\s|\")'
RETURN EXPECT(REGEXP_REPLACE(expected, r1, ''), REGEXP_REPLACE(TRIM(actual), r2, ''))