Fix Matcha light variant support

This commit is contained in:
Romain Vigier
2020-02-14 01:18:33 +01:00
parent 61ff552550
commit 100504c585
2 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -15,8 +15,7 @@ const { Variants } = require('./_variants');
t.is(variants.night, `Matcha-dark-${color}`);
});
// TODO: Implement light variant
test.skip(`Matcha-light-${color}`, t => {
test(`Matcha-light-${color}`, t => {
const variants = Variants.guess_from(`Matcha-light-${color}`);
t.is(variants.day, `Matcha-light-${color}`);
t.is(variants.night, `Matcha-dark-${color}`);