mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-22 08:01:52 +02:00
29 lines
486 B
JavaScript
29 lines
486 B
JavaScript
|
|
||
|
/* IMPORT */
|
||
|
|
||
|
import {describe} from 'fava';
|
||
|
import {isLight} from '../../dist/index.js';
|
||
|
|
||
|
/* MAIN */
|
||
|
|
||
|
describe ( 'isLight', it => {
|
||
|
|
||
|
it ( 'checks if the provided color is a light color', t => {
|
||
|
|
||
|
const tests = [
|
||
|
['#000000', false],
|
||
|
['#8a8a8a', false],
|
||
|
['#bbbbbb', false],
|
||
|
['#ffcc00', true],
|
||
|
['#e0e0e0', true],
|
||
|
['#ffffff', true]
|
||
|
];
|
||
|
|
||
|
tests.forEach ( ([ color, output ]) => {
|
||
|
t.is ( isLight ( color ), output );
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|