Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3500,7 +3500,7 @@ test.serial(`${currentTest} should throw an exception, when primary key is not p
t.is(message, Messages.PRIMARY_KEY_INVALID);
});

Copilot AI Jan 21, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test is being skipped without any accompanying comment or documentation explaining why. While the PR title mentions "incorrect name handling," there's no indication of whether this is a known bug, a temporary workaround, or a tracking issue to re-enable the test. Consider adding a comment above the test explaining why it's skipped and reference a tracking issue for fixing the underlying problem.

Suggested change
// TODO(ISSUE-1234): Re-enable this test once incorrect primary key name handling
// in the MSSQL table row endpoint is fixed. Currently the endpoint does not
// properly treat an incorrect primary key name as invalid, causing this test
// to fail intermittently. Tracking: ISSUE-1234.

Copilot uses AI. Check for mistakes.
test.serial(
test.skip(
`${currentTest} should throw an exception, when primary key passed in request has incorrect name`,
async (t) => {
const connectionToTestMSSQL = getTestData(mockFactory).connectionToTestMSSQLSchemaInDocker;
Expand Down
Loading