-
Notifications
You must be signed in to change notification settings - Fork 399
feat/dataSync #494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
feat/dataSync #494
Changes from all commits
dad9aca
1679c35
a8d0d73
cd73f80
9c94118
784cb05
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,12 +1,12 @@ | ||||||
| { | ||||||
| "require": "tsx", | ||||||
| "file": ["test/setup-why.ts"], | ||||||
| "spec": "test/**/*.test.ts", | ||||||
| "spec": "test/integration/endpoints/dataSync.test.ts", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do not narrow global Line 4 now limits CI to one integration test and effectively skips the rest of the suite. Proposed fix- "spec": "test/integration/endpoints/dataSync.test.ts",
+ "spec": "test/**/*.test.ts",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| "exclude": [ | ||||||
| "test/dist/*.{js,ts}", | ||||||
| "test/feature/*.{js,ts}", | ||||||
| "test/integration/shared-worker/*.{js,ts}" | ||||||
| ], | ||||||
| "timeout": 5000, | ||||||
| "timeout": 5000000, | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reduce the test timeout to a sane bound. Line 10 sets ~83 minutes per test, which can hide hangs and slow feedback loops significantly. Proposed fix- "timeout": 5000000,
+ "timeout": 30000,📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| "reporter": "spec" | ||||||
| } | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Resolve merge-conflict markers before merge.
Lines 6-12 and Line 104-Line 109 contain unresolved Git conflict markers, and the YAML cannot be parsed (
could not find expected ':').Proposed fix (resolve conflicts and remove markers)
Also applies to: 104-109
🧰 Tools
🪛 YAMLlint (1.38.0)
[error] 7-7: syntax error: could not find expected ':'
(syntax)
🤖 Prompt for AI Agents