We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dbf9b7 commit ecee235Copy full SHA for ecee235
test/index.test.ts
@@ -1,5 +1,9 @@
1
-import { MyModule } from '../src/index';
+import { CachedResults, ParseOffline } from '../src/index';
2
3
-test('test', () => {
4
- expect(true).toBe(true);
+test('CachedResults', () => {
+ expect(CachedResults).toBeTruthy();
5
+});
6
+
7
+test('ParseOffline', () => {
8
+ expect(ParseOffline).toBeTruthy();
9
});
0 commit comments