openspec-playwright 0.1.36 → 0.1.37

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openspec-playwright",
3
- "version": "0.1.36",
3
+ "version": "0.1.37",
4
4
  "description": "OpenSpec + Playwright E2E verification setup tool for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {
package/release-notes.md CHANGED
@@ -1,5 +1,5 @@
1
1
  ## What's Changed
2
2
 
3
- - fix(skill): correct step numbering and resolve --project vs --grep contradiction
3
+ - fix(seed): add waitForLoadState('networkidle') after reload
4
4
 
5
- **Full Changelog**: https://github.com/wxhou/openspec-playwright/releases/tag/v0.1.36
5
+ **Full Changelog**: https://github.com/wxhou/openspec-playwright/releases/tag/v0.1.37
@@ -54,6 +54,7 @@ test.describe('Application smoke tests', () => {
54
54
  }
55
55
  });
56
56
  await page.reload();
57
+ await page.waitForLoadState('networkidle');
57
58
  // Filter out known non-critical errors
58
59
  const criticalErrors = errors.filter(
59
60
  (e) => !e.includes('favicon') && !e.includes('404')
Binary file