dotfiles/vscode/.vscode/extensions/randomfractalsinc.vscode-data-preview-2.3.0/node_modules/chroma-js/test/get-test.coffee
Errol Sancaktar ff17c17e23 vscode
2024-06-14 09:31:58 -06:00

15 lines
315 B
CoffeeScript

require 'es6-shim'
vows = require 'vows'
assert = require 'assert'
chroma = require '../chroma'
vows
.describe('Testing color.get')
.addBatch
'get hue':
topic: chroma 'hotpink'
'hue not zero': (topic) -> assert.equal topic.hsl()[0], topic.get('hsl.h')
.export(module)