Commit 0e45b87
Fix CI: Revert OSS dummy to defer: true for Redux compatibility
The OSS dummy app uses Redux shared stores with inline component
registration, which requires defer: true. With async: true, the bundle
executes before inline scripts, causing component registration failures.
Changes:
- spec/dummy: Reverted to defer: true (was async: true)
- Updated comment to explain Redux inline registration requirement
- Pro dummy: Remains async: true (has getOrWaitForStore support)
This fixes CI test failures:
- "Could not find component registered with name ReduxApp"
- "Could not find store registered with name 'SharedReduxStore'"
Root cause: async scripts execute immediately upon download, before
inline <script> tags in HTML. defer scripts wait for HTML parsing,
ensuring proper execution order.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>1 parent 8c50236 commit 0e45b87
1 file changed
+5
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
13 | | - | |
14 | | - | |
15 | | - | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
16 | 17 | | |
17 | 18 | | |
18 | 19 | | |
| |||
0 commit comments