mirror of
https://github.com/MontFerret/ferret.git
synced 2025-01-16 03:21:03 +02:00
10 lines
252 B
Plaintext
10 lines
252 B
Plaintext
LET url = @static + '/simple.html'
|
|
LET doc = DOCUMENT(url)
|
|
|
|
LET expected = `Title Hello world`
|
|
LET actual = INNER_TEXT(doc)
|
|
|
|
LET r1 = '(\s|\")'
|
|
LET r2 = '(\n|\s|\")'
|
|
|
|
RETURN EXPECT(REGEXP_REPLACE(expected, r1, ''), REGEXP_REPLACE(TRIM(actual), r2, '')) |