10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
|
import test from 'ava';
|
||
|
import { Color } from '../lib';
|
||
|
|
||
|
test ('serialize', (t) => {
|
||
|
const wh = Color.white;
|
||
|
const tr = Color.transparent;
|
||
|
t.is (wh.toString (), '#ffffff');
|
||
|
t.is (tr.toString (), '#00000000');
|
||
|
});
|