mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-22 07:31:52 +02:00
28 lines
482 B
JavaScript
28 lines
482 B
JavaScript
|
|
/* 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 );
|
|
});
|
|
|
|
});
|
|
|
|
});
|