forked from SolidOS/solid-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.test.ts
More file actions
84 lines (82 loc) · 1.85 KB
/
Copy pathstyle.test.ts
File metadata and controls
84 lines (82 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import {
textInputStyle,
buttonStyle,
textButtonStyle,
iconStyle,
classIconStyle,
messageBodyStyle,
pendingeditModifier,
highlightColor,
signInButtonStyle,
formBorderColor,
formHeadingColor,
formTextInput,
multilineTextInputStyle
} from '../../src/style'
jest.mock('rdflib')
jest.mock('solid-auth-client')
describe('textInputStyle', () => {
it('exists', () => {
expect(typeof textInputStyle).toEqual('string')
})
})
describe('buttonStyle', () => {
it('exists', () => {
expect(typeof buttonStyle).toEqual('string')
})
})
describe('textButtonStyle', () => {
it('exists', () => {
expect(typeof textButtonStyle).toEqual('string')
})
})
describe('iconStyle', () => {
it('exists', () => {
expect(typeof iconStyle).toEqual('string')
})
})
describe('classIconStyle', () => {
it('exists', () => {
expect(typeof classIconStyle).toEqual('string')
})
})
describe('messageBodyStyle', () => {
it('exists', () => {
expect(typeof messageBodyStyle).toEqual('string')
})
})
describe('pendingeditModifier', () => {
it('exists', () => {
expect(typeof pendingeditModifier).toEqual('string')
})
})
describe('highlightColor', () => {
it('exists', () => {
expect(typeof highlightColor).toEqual('string')
})
})
describe('signInButtonStyle', () => {
it('exists', () => {
expect(typeof signInButtonStyle).toEqual('string')
})
})
describe('formBorderColor', () => {
it('exists', () => {
expect(typeof formBorderColor).toEqual('string')
})
})
describe('formHeadingColor', () => {
it('exists', () => {
expect(typeof formHeadingColor).toEqual('string')
})
})
describe('formTextInput', () => {
it('exists', () => {
expect(typeof formTextInput).toEqual('string')
})
})
describe('multilineTextInputStyle', () => {
it('exists', () => {
expect(typeof multilineTextInputStyle).toEqual('string')
})
})