2021-10-07 10:26:24 -05:00
|
|
|
// If we have a long `<code>`, we need to ensure that it'll be fully displayed on mobile, meaning
|
|
|
|
// that it'll be on two lines.
|
2024-10-26 13:40:59 -05:00
|
|
|
|
2021-10-07 10:26:24 -05:00
|
|
|
emulate: "iPhone 8" // it has the following size: (375, 667)
|
2023-04-11 12:11:34 -05:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/long_code_block/index.html"
|
2021-10-07 10:26:24 -05:00
|
|
|
show-text: true // We need to enable text draw to be able to have the "real" size
|
2024-10-26 13:40:59 -05:00
|
|
|
|
|
|
|
// We now check that the block is on two lines:
|
2021-10-07 10:26:24 -05:00
|
|
|
// Little explanations for this test: if the text wasn't displayed on two lines, it would take
|
2024-10-26 13:40:59 -05:00
|
|
|
// around 24px (which is the font size).
|
|
|
|
assert-size: (".docblock p > code", {"height": 48})
|
2022-12-13 11:46:27 -06:00
|
|
|
|
|
|
|
// Same check, but where the long code block is also a link
|
2023-04-11 12:11:34 -05:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/long_code_block_link/index.html"
|
2024-10-26 13:40:59 -05:00
|
|
|
assert-size: (".docblock p > a > code", {"height": 48})
|