Skip to content

Commit 9508327

Browse files
committed
Test harness.
1 parent 6171922 commit 9508327

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

test/index.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import { expect } from 'chai';
2+
import VirtualList from '../src';
3+
/**@jsx h */
4+
5+
/*eslint-env mocha*/
6+
7+
describe('preact-virtual-list', () => {
8+
it('should export a class', () => {
9+
expect(VirtualList).to.be.a('function');
10+
});
11+
12+
xit('should have proper tests', () => {});
13+
});

0 commit comments

Comments
 (0)