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
package/release-notes.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
## What's Changed
|
|
2
2
|
|
|
3
|
-
- fix(
|
|
3
|
+
- fix(seed): add waitForLoadState('networkidle') after reload
|
|
4
4
|
|
|
5
|
-
**Full Changelog**: https://github.com/wxhou/openspec-playwright/releases/tag/v0.1.
|
|
5
|
+
**Full Changelog**: https://github.com/wxhou/openspec-playwright/releases/tag/v0.1.37
|
package/templates/seed.spec.ts
CHANGED
|
@@ -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
|