9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
import { InfiniteScroll } from './infinite-scroll';
|
|
|
|
describe('InfiniteScroll', () => {
|
|
it('should create an instance', () => {
|
|
const directive = new InfiniteScroll();
|
|
expect(directive).toBeTruthy();
|
|
});
|
|
});
|