UNPKG

fixins

Version:

A collection of functions and mixins for use with precss and postcss-functions

11 lines (8 loc) 267 B
import test from 'ava'; import c from '../../lib/functions/colors'; import materialColors from '../../node_modules/material-colors/dist/colors.js'; const mdc = c.mdc; test('mdc', t => { t.same(mdc('red', 500), materialColors.red['500']); t.end(); });