skopix 2.0.74 → 2.0.76

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.
@@ -2639,6 +2639,7 @@ async function listAllTests(suitesDir) {
2639
2639
  provider: test.provider,
2640
2640
  model: test.model,
2641
2641
  credentials: test.credentials || '',
2642
+ folder: test.folder || null,
2642
2643
  });
2643
2644
  }
2644
2645
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skopix",
3
- "version": "2.0.74",
3
+ "version": "2.0.76",
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": {
@@ -6061,7 +6061,7 @@ function renderPendingSteps(steps) {
6061
6061
  }
6062
6062
 
6063
6063
  async function loadLibraryView() {
6064
- const [steps, pending, folders] = await Promise.all([
6064
+ const [steps, pending] = await Promise.all([
6065
6065
  fetchLibrarySteps().catch(() => []),
6066
6066
  fetchPendingSteps().catch(() => []),
6067
6067
  fetchFolders().catch(() => [])
@@ -6069,7 +6069,7 @@ async function loadLibraryView() {
6069
6069
  renderFolderTree('library-folder-tree', 'library', selectedLibraryFolder);
6070
6070
  renderPendingSteps(pending);
6071
6071
  populateLibraryTagFilter();
6072
- renderLibrarySteps(steps);
6072
+ filterLibrarySteps(); // uses selectedLibraryFolder to filter
6073
6073
  }
6074
6074
 
6075
6075
  async function approvePendingUI(id) {