Update JQL property test to reflect cross-project sync fix

The project filter was intentionally removed from searchIssuesByKeys() to
fix cross-project ticket sync. Update the property test to no longer assert
the presence of 'project =' in the generated JQL.
This commit is contained in:
Jordan Ramos
2026-05-20 14:01:28 -06:00
parent ddc3af9147
commit df31cc3c79

View File

@@ -100,7 +100,8 @@ describe('Feature: jira-api-compliance-cleanup, Property 1: JQL window is always
expect(capturedJql).not.toBeNull(); expect(capturedJql).not.toBeNull();
expect(capturedJql).toContain('updated >= -72h'); expect(capturedJql).toContain('updated >= -72h');
expect(capturedJql).toContain('project ='); // project filter intentionally removed — issue keys are globally unique
// and the filter broke cross-project ticket sync
}), }),
{ numRuns: 100 } { numRuns: 100 }
); );