skopix 2.0.49 → 2.0.51

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.49",
3
+ "version": "2.0.51",
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": {
@@ -5633,8 +5633,11 @@ function renderPendingSteps(steps) {
5633
5633
  }
5634
5634
 
5635
5635
  async function loadLibraryView() {
5636
- const [steps, pending] = await Promise.all([fetchLibrarySteps(), fetchPendingSteps()]);
5637
- // Render pending FIRST before populateLibraryTagFilter which can trigger onchange
5636
+ const [steps, pending] = await Promise.all([
5637
+ fetchLibrarySteps().catch(() => []),
5638
+ fetchPendingSteps().catch(() => [])
5639
+ ]);
5640
+ console.log('[pending] loadLibraryView got steps:', steps.length, 'pending:', pending.length);
5638
5641
  renderPendingSteps(pending);
5639
5642
  populateLibraryTagFilter();
5640
5643
  renderLibrarySteps(steps);