Skip to content

Commit e083686

Browse files
committed
fix(tests.themes): replace double negation to or logical expression
1 parent 0acef97 commit e083686

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/themes.check.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
const themes = require('../themes.json')
22

3-
let allBugs = []
3+
const allBugs = []
44

55
themes.forEach((entry, index) => {
66

7-
let currentBugs = []
7+
const currentBugs = []
88

99
const keys = Object.keys(entry)
1010
const objectKeys = keys[0] !== 'title' ||
@@ -17,7 +17,7 @@ themes.forEach((entry, index) => {
1717
typeof entry[keys[1]] !== 'string' ||
1818
typeof entry[keys[2]] !== 'string' ||
1919
typeof entry[keys[3]] !== 'string' ||
20-
typeof entry[keys[4]] !== 'object' !!
20+
typeof entry[keys[4]] !== 'object' ||
2121
typeof entry[keys[5]] !== 'string'
2222

2323
if (typeof entry !== 'object') currentBugs.push('This theme is not an object.')

0 commit comments

Comments
 (0)