blowfish/node_modules/khroma/test/methods/hue.js

26 lines
398 B
JavaScript
Raw Normal View History

2023-01-29 22:30:24 +00:00
/* IMPORT */
import {describe} from 'fava';
import {hue} from '../../dist/index.js';
/* MAIN */
describe ( 'hue', it => {
it ( 'gets the hue channel of the color', t => {
const tests = [
['hsl(10, 20%, 30%)', 10],
['rgb(10, 20, 30)', 210],
['#102030', 210]
];
tests.forEach ( ([ color, output ]) => {
t.is ( hue ( color ), output );
});
});
});