1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-11-25 22:01:39 +02:00
Files
ferret/e2e/tests/dynamic/doc/inner_html/set.fql

13 lines
310 B
Plaintext
Raw Normal View History

LET url = @lab.cdn.dynamic
LET doc = DOCUMENT(url, true)
LET expected = `<span>Hello</span>`
INNER_HTML_SET(doc, "body", "<span>Hello</span>")
LET actual = INNER_HTML(doc, "body")
LET r1 = '(\s|\")'
LET r2 = '(\n|\s|\")'
RETURN T::EQ(REGEXP_REPLACE(expected, r1, ''), REGEXP_REPLACE(TRIM(actual), r2, ''))