fix test
This commit is contained in:
parent
98934b6738
commit
9d0fc96d1a
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue