Skip to content

Commit f8ecd9d

Browse files
authored
Merge pull request #5 from stoplightio/chore/SL-1223/tests
[SL-1223] Linting errors
2 parents c6b4b05 + 568d5e6 commit f8ecd9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/__mocks__/theme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const useTheme = () => ({
33
bg: '#111',
44
fg: '#fff',
55
error: 'red',
6-
muted: 'rgba(255, 255, 255, 0.4)'
6+
muted: 'rgba(255, 255, 255, 0.4)',
77
},
88

99
divider: {

src/util/__tests__/isCombiner.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ describe('isCombiner function', () => {
66
expect(isCombiner({ properties: [] })).toBe(false);
77
});
88

9-
test.each(['allOf', 'anyOf', 'oneOf'])('should return true if object with %s is given', (prop) => {
9+
test.each(['allOf', 'anyOf', 'oneOf'])('should return true if object with %s is given', prop => {
1010
expect(isCombiner({ [prop]: {} })).toBe(true);
1111
});
1212
});

0 commit comments

Comments
 (0)