mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
9f633bc002
* chore: getScroll add more test * Update getScroll.test.js
12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
/**
|
|
* @jest-environment node
|
|
*/
|
|
import getScroll from '../getScroll';
|
|
|
|
describe('getScroll node', () => {
|
|
it('getScroll return 0 in node environment', async () => {
|
|
expect(getScroll(null, true)).toBe(0);
|
|
expect(getScroll(null, false)).toBe(0);
|
|
});
|
|
});
|