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

16 lines
382 B
CoffeeScript

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