From d453c5ae71f21656ee2ea149e58279c2e5b32467 Mon Sep 17 00:00:00 2001 From: Adam Argyle Date: Fri, 29 Sep 2023 11:57:57 -0700 Subject: [PATCH] update tests --- test/basic.test.cjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/basic.test.cjs b/test/basic.test.cjs index f373abca..917fe983 100644 --- a/test/basic.test.cjs +++ b/test/basic.test.cjs @@ -4,7 +4,7 @@ const OpenProps = require('../dist/open-props.cjs') const OPtokens = require('../open-props.tokens.json') test('Should have an all included import', t => { - t.is(Object.keys(OpenProps).length, 1622) + t.is(Object.keys(OpenProps).length, 1642) }) test('Import should have animations', async t => { @@ -24,7 +24,7 @@ test('Import should have colors', async t => { }) test('JSON Import should have colors', async t => { - t.is(Object.keys(OPtokens).length, 424) + t.is(Object.keys(OPtokens).length, 434) t.assert(Object.keys(OPtokens).includes('--orange-0')) })