twd-cli 1.0.2 → 1.0.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## <small>1.0.3 (2025-11-24)</small>
2
+
3
+ * fix: error selector ([1e081a6](https://github.com/BRIKEV/twd-cli/commit/1e081a6))
4
+
1
5
  ## <small>1.0.2 (2025-11-24)</small>
2
6
 
3
7
  * feat: add basic cli feature ([23bde8c](https://github.com/BRIKEV/twd-cli/commit/23bde8c))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "twd-cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "CLI tool for running TWD tests with Puppeteer",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.js CHANGED
@@ -25,7 +25,7 @@ export async function runTests() {
25
25
  await page.goto(config.url);
26
26
 
27
27
  // Wait for the selector to be available
28
- await page.waitForSelector('[data-testid="twd-sidebar"]', { timeout: config.timeout });
28
+ await page.waitForSelector('#twd-sidebar-root', { timeout: config.timeout });
29
29
  console.log('Page loaded. Starting tests...');
30
30
 
31
31
  // Execute all tests