aboutsummaryrefslogtreecommitdiff
path: root/test/unit/specs
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-01-23 19:18:55 +0200
committerHenry Jameson <me@hjkos.com>2024-01-23 19:18:55 +0200
commit22b32f149d7753592fddcfb1cd2679b3fbac33d6 (patch)
treeb3634cb09008c50d0becf3ba8e46becfb336f15d /test/unit/specs
parent0729b529d7da2002f25039e1dad2732302009cf3 (diff)
shit more or less works for the very basic stuff
Diffstat (limited to 'test/unit/specs')
-rw-r--r--test/unit/specs/services/theme_data/theme_data3.spec.js7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/unit/specs/services/theme_data/theme_data3.spec.js b/test/unit/specs/services/theme_data/theme_data3.spec.js
index e76200c0..915bb5ce 100644
--- a/test/unit/specs/services/theme_data/theme_data3.spec.js
+++ b/test/unit/specs/services/theme_data/theme_data3.spec.js
@@ -1,8 +1,7 @@
// import { topoSort } from 'src/services/theme_data/theme_data.service.js'
import {
getAllPossibleCombinations,
- init,
- ruleToSelector
+ init
} from 'src/services/theme_data/theme_data_3.service.js'
import {
sampleRules
@@ -19,8 +18,8 @@ describe.only('Theme Data 3', () => {
describe('init', () => {
it('test simple case', () => {
const out = init(sampleRules)
- console.log(JSON.stringify(out, null, 2))
- out.forEach(r => console.log(ruleToSelector(r)))
+ // console.log(JSON.stringify(out, null, 2))
+ console.log('\n' + out.css.join('\n') + '\n')
})
})
})