Skip to content

Commit 27cc441

Browse files
jss/index runs
1 parent 92b4f3a commit 27cc441

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

test/unit/jss/index.test.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,21 @@ describe('getClasses', () => {
44
it('exists', () => {
55
expect(getClasses).toBeInstanceOf(Function)
66
})
7+
it('runs', () => {
8+
const insertionPoint = {} as HTMLElement
9+
const styles = {}
10+
expect(getClasses(insertionPoint, styles)).toBeInstanceOf(Object)
11+
})
712
})
813

914
describe('getStylesheet', () => {
1015
it('exists', () => {
1116
expect(getStylesheet).toBeInstanceOf(Function)
1217
})
18+
it('runs', () => {
19+
const insertionPoint = {} as HTMLElement
20+
expect(getStylesheet(insertionPoint)).toBeInstanceOf(Object)
21+
})
1322
})
1423

1524

0 commit comments

Comments
 (0)