-
Notifications
You must be signed in to change notification settings - Fork 531
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: added initial test for fetchReason #23057
base: main
Are you sure you want to change the base?
Conversation
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.
Copilot
AI
left a comment
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.
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 suggestion.
Tip: Leave feedback on Copilot's review comments with the 👎 and 👍 buttons to help improve review quality. Learn more
@@ -142,4 +142,16 @@ describe("DocumentService", () => { | |||
assert.equal(documentService.policies?.summarizeProtocolTree, true); | |||
stubbedDeltaConnectionCreate.restore(); | |||
}); | |||
|
|||
it.only("DocumentDeltaStorageService sends fetchReason along with fetchMessages", async () => { |
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.
Using 'it.only' will cause only this test to run, potentially skipping other tests. Remove 'only' to ensure all tests are executed.
it.only("DocumentDeltaStorageService sends fetchReason along with fetchMessages", async () => { | |
it("DocumentDeltaStorageService sends fetchReason along with fetchMessages", async () => { |
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
Description
Create new test to make sure that the added code is functioning as intended and see what is going to be sent from now to AFR
Reviewer Guidance
Let me know if there's a better way to create the test