Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Polishing
  • Loading branch information
LitoMore committed Oct 12, 2022
commit f00773ec37e16214194400d370f317b0ad5ebe5a
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ test('non-styles should not be exported', t => {
t.false(modifierNames.some(name => isNonStyle(name)));
t.false(foregroundColorNames.some(name => isNonStyle(name)));
t.false(backgroundColorNames.some(name => isNonStyle(name)));
t.false(backgroundColorNames.some(name => !name.startsWith('bg')));
t.true(backgroundColorNames.every(name => name.startsWith('bg')));
t.false(colorNames.some(name => isNonStyle(name)));
});