-
Notifications
You must be signed in to change notification settings - Fork 34
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
Test Command #236
Merged
varungandhi-src
merged 31 commits into
sourcegraph:main
from
matthewnitschke-wk:test_command
Sep 26, 2024
Merged
Test Command #236
Changes from 26 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
ce39427
spiked format command
matthewnitschke-wk 0454aa5
working implementation of the test command
matthewnitschke-wk 0a4a2ca
better implementation
matthewnitschke-wk cf625c3
better implementation
matthewnitschke-wk ba45ecd
iterations on test command
matthewnitschke-wk 611e3b6
implemented tests for test command
matthewnitschke-wk 3538c23
implemented multiline infastructure and diagnostics test cases
matthewnitschke-wk 3d0c328
improved test output
matthewnitschke-wk 77cdf53
added tests and fixed broken implementations of multiline attribute p…
matthewnitschke-wk 3f8abb9
updated documentation
matthewnitschke-wk 4dee2ec
added documentation for the test wildcard
matthewnitschke-wk b6528a5
few improvements from initial review
matthewnitschke-wk 7f94917
merged master
matthewnitschke-wk 30dda1a
bumped golang version and updated test_command documentation
matthewnitschke-wk 005eba9
updated documentation for test_command
matthewnitschke-wk b1f45f7
implemented reprolang tests
matthewnitschke-wk ff37e14
ran prettier
matthewnitschke-wk d87fc95
resolved failed unit test
matthewnitschke-wk 9efd41f
resolved markdown test
matthewnitschke-wk 7c64cf0
removed accidentally committed binary
matthewnitschke-wk 7b1bdb3
Clean up test code a little bit
varungandhi-src a5e0616
Snapshot test the test command outputs
varungandhi-src 7ea45bf
Check that there aren't any unused test files
varungandhi-src b3ea6fd
Add more helpful docs
varungandhi-src d223ba1
Put test subcommand below stats
varungandhi-src 58b5af4
Run prettier
varungandhi-src 2b124af
More compact initialization
varungandhi-src 1f328be
Add a few more assertions
varungandhi-src d254ed6
Minor tweaks to syntax reference
varungandhi-src e221ec6
Downgrade back to Go 1.20.14
varungandhi-src 7429540
Run prettier
varungandhi-src File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
golang 1.20.14 | ||
golang 1.23.1 | ||
nodejs 16.20.2 | ||
shellcheck 0.7.1 | ||
yarn 1.22.17 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@matthewnitschke-wk I've added snapshot tests here for checking the output, so that we don't accidentally regress something (earlier, this test was just checking for pass/fail instead of checking the output).