mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-14 11:23:02 +02:00
dca7267e82
* Renamed REGEXP_REPLACE to REGEX_REPLACE in e2e tests * Updated example test suites * Fixed config file * Updated go.sum * Switched back to ubuntu * Added release action
13 lines
308 B
Plaintext
13 lines
308 B
Plaintext
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(REGEX_REPLACE(expected, r1, ''), REGEX_REPLACE(TRIM(actual), r2, '')) |