mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 11:44:49 +08:00
DEV: Fix failing test
jquery.autoellipsis tries to automatically find the available space
which depends on multiple factors which may differ between the machines
where the tests are running.
Follow-up to commit 9c628f0897
.
This commit is contained in:
parent
9c628f0897
commit
fe6ff1b5ab
|
@ -22,11 +22,11 @@ componentTest("default", {
|
|||
},
|
||||
|
||||
test(assert) {
|
||||
assert.equal(
|
||||
find(".overflow")
|
||||
.text()
|
||||
.trim(),
|
||||
"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\nFusce convallis faucibus tortor quis vestibulum. Phasellus pharetra dolor eget imperdiet..."
|
||||
);
|
||||
const text = find(".overflow")
|
||||
.text()
|
||||
.trim();
|
||||
|
||||
assert.ok(text.startsWith("Lorem ipsum dolor sit amet"));
|
||||
assert.ok(text.endsWith("..."));
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user