aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authormarcin mikołajczak <git@mkljczk.pl>2024-09-24 00:38:55 +0200
committermarcin mikołajczak <git@mkljczk.pl>2024-09-24 00:38:55 +0200
commit1097b95fa5bb2a6b6479801579bd6c5b1d25bf55 (patch)
tree53e870b9b2f8871b918a3aefd8e8e6b3c8458cbd /test
parent6c7a263371fd6535f1805131ba6c72f31c943d52 (diff)
parentcf24e3009512ab4b86a600837f255fe86b9a5b0d (diff)
Merge remote-tracking branch 'origin/develop' into bookmark-folders
Diffstat (limited to 'test')
-rw-r--r--test/unit/specs/services/theme_data/iss_deserializer.spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/specs/services/theme_data/iss_deserializer.spec.js b/test/unit/specs/services/theme_data/iss_deserializer.spec.js
index 01f8dacf..6eb25dfe 100644
--- a/test/unit/specs/services/theme_data/iss_deserializer.spec.js
+++ b/test/unit/specs/services/theme_data/iss_deserializer.spec.js
@@ -19,7 +19,7 @@ describe('ISS (de)serialization', () => {
/*
// Debug snippet
const onlyComponent = componentsContext('./components/panel_header.style.js').default
- it(`(De)serialization of component ${onlyComponent.name} works`, () => {
+ it.only(`(De)serialization of component ${onlyComponent.name} works`, () => {
const normalized = onlyComponent.defaultRules.map(x => ({ component: onlyComponent.name, ...x }))
console.log('BEGIN INPUT ================')
console.log(normalized)
@@ -36,5 +36,5 @@ describe('ISS (de)serialization', () => {
// for some reason comparing objects directly fails the assert
expect(JSON.stringify(deserialized, null, 2)).to.equal(JSON.stringify(normalized, null, 2))
})
- */
+ /* */
})