Skip to content

Commit 762540e

Browse files
export existence test for jss/index
1 parent f46d6b7 commit 762540e

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

test/unit/jss/index.test.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import { getClasses, getStylesheet } from '../../../src/jss/index'
2+
3+
describe('getClasses', () => {
4+
it('exists', () => {
5+
expect(getClasses).toBeInstanceOf(Function)
6+
})
7+
})
8+
9+
describe('getStylesheet', () => {
10+
it('exists', () => {
11+
expect(getStylesheet).toBeInstanceOf(Function)
12+
})
13+
})
14+
15+

0 commit comments

Comments
 (0)