This commit is contained in:
syuilo 2024-02-29 18:04:03 +09:00
parent 98934b6738
commit 9d0fc96d1a
1 changed files with 0 additions and 2 deletions

View File

@ -39,7 +39,6 @@ describe('Scroll', () => {
const { document } = new Window();
const div = document.createElement('div');
assert.strictEqual(div.scrollTop, 0);
(div as any).scrollHeight = 100; // happy-dom has no scrollHeight
document.body.append(div);
@ -53,7 +52,6 @@ describe('Scroll', () => {
const { document } = new Window();
const div = document.createElement('div');
assert.strictEqual(div.scrollTop, 0);
(div as any).scrollHeight = 100; // happy-dom has no scrollHeight
let called = false;
onScrollBottom(div as any as HTMLElement, () => called = true);