You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

28 lines
482 B

/* IMPORT */
import {describe} from 'fava';
import {isDark} from '../../dist/index.js';
/* MAIN */
describe ( 'isDark', it => {
it ( 'checks if the provided color is a dark color', t => {
const tests = [
['#000000', true],
['#8a8a8a', true],
['#bbbbbb', true],
['#ffcc00', false],
['#e0e0e0', false],
['#ffffff', false]
];
tests.forEach ( ([ color, output ]) => {
t.is ( isDark ( color ), output );
});
});
});