skopix 2.0.48 → 2.0.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skopix",
3
- "version": "2.0.48",
3
+ "version": "2.0.50",
4
4
  "description": "Browser-based QA tool — record tests by using your app, replay them deterministically, generate Playwright code automatically",
5
5
  "main": "cli/index.js",
6
6
  "bin": {
@@ -5596,7 +5596,8 @@ function renderPendingSteps(steps) {
5596
5596
  const section = document.getElementById('library-pending-section');
5597
5597
  const list = document.getElementById('pending-steps-list');
5598
5598
  const countLabel = document.getElementById('pending-count-label');
5599
- if (!section || !list) return;
5599
+ console.log('[pending] renderPendingSteps called, steps:', steps?.length, 'section:', !!section);
5600
+ if (!section || !list) { console.warn('[pending] missing elements!'); return; }
5600
5601
 
5601
5602
  if (!steps || steps.length === 0) {
5602
5603
  section.style.display = 'none';
@@ -5604,6 +5605,7 @@ function renderPendingSteps(steps) {
5604
5605
  return;
5605
5606
  }
5606
5607
 
5608
+ console.log('[pending] showing section with', steps.length, 'steps');
5607
5609
  section.style.display = 'block';
5608
5610
  updatePendingBadge(steps.length);
5609
5611
  if (countLabel) countLabel.textContent = `${steps.length} element${steps.length > 1 ? 's' : ''} waiting`;