| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
Note
Copilot was unable to run its full agentic suite in this review.
This PR primarily improves test portability and isolation (avoiding OS-specific paths and repo-local filesystem side effects), while also updating a few Go dependencies.
Changes:
Copilot reviewed 4 out of 7 changed files in this pull request and generated 2 comments.
Show a summary per file| File | Description |
|---|---|
| pkg/tracer/console_test.go | Isolates file exporter tests via temp working directory and updates panic assertion logic. |
| pkg/sql2code/parser/parser_test.go | Replaces Windows-specific path string with filepath.Join for cross-platform tests. |
| pkg/sgorm/sqlite/sqlite_test.go | Writes sqlite test DB into t.TempDir() for better isolation. |
| go.mod | Updates dependency versions and adds new indirect deps required by upgrades. |
| go.sum | Syncs checksums with updated module graph. |
| .gitignore | Ignores sqlite .db files under pkg/sgorm/sqlite/. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Sorry, something went wrong.
| assert.Panics(t, func() { | ||
| _, _, _ = NewFileExporter(t.TempDir()) | ||
| }) |
| dbFile := filepath.Join("..", "..", "..", "test", "sql", "sqlite", "sponge.db") | ||
| info, err := GetSqliteTableInfo(dbFile, "user_order") |
| Back | FazBrowse Home | New Git URL |
Summary
Tests