Pass derive function as argument
This commit is contained in:
parent
6d724e27e7
commit
bfd73ae52a
1 changed files with 2 additions and 2 deletions
|
@ -108,7 +108,7 @@ module.exports.tests = function tests() {
|
|||
--my-alias--darker-20: ${transformedColor2.hex()};
|
||||
}
|
||||
`;
|
||||
await run( inputCSS, outputCSS, { }, assert);
|
||||
await run( inputCSS, outputCSS, {derive}, assert);
|
||||
},
|
||||
|
||||
"compiledVariables map is populated": async (assert) => {
|
||||
|
@ -150,7 +150,7 @@ module.exports.tests = function tests() {
|
|||
--foo-color--darker-5: ${transformedColorDarker.hex()};
|
||||
}
|
||||
`;
|
||||
await run( inputCSS, outputCSS, {}, assert);
|
||||
await run( inputCSS, outputCSS, {derive}, assert);
|
||||
}
|
||||
};
|
||||
};
|
||||
|
|
Reference in a new issue