Skip to content

Commit ecee235

Browse files
fixed index tests
1 parent 4dbf9b7 commit ecee235

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

test/index.test.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
import { MyModule } from '../src/index';
1+
import { CachedResults, ParseOffline } from '../src/index';
22

3-
test('test', () => {
4-
expect(true).toBe(true);
3+
test('CachedResults', () => {
4+
expect(CachedResults).toBeTruthy();
5+
});
6+
7+
test('ParseOffline', () => {
8+
expect(ParseOffline).toBeTruthy();
59
});

0 commit comments

Comments
 (0)