File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import { setDefaults } from "../../../src/lib/db/defaults.js";
2323// biome-ignore lint/performance/noNamespaceImport: needed for spyOn mocking
2424import * as paginationDb from "../../../src/lib/db/pagination.js" ;
2525import { setOrgRegion } from "../../../src/lib/db/regions.js" ;
26- import { ApiError , ValidationError } from "../../../src/lib/errors.js" ;
26+ import { ApiError } from "../../../src/lib/errors.js" ;
2727import { mockFetch , useTestConfigDir } from "../../helpers.js" ;
2828
2929type ListFlags = {
@@ -456,7 +456,10 @@ describe("issue list: org-all mode (cursor pagination)", () => {
456456 target ?: string
457457 ) => Promise < void > ;
458458
459- listIssuesPaginatedSpy . mockResolvedValue ( { data : [ ] , nextCursor : undefined } ) ;
459+ listIssuesPaginatedSpy . mockResolvedValue ( {
460+ data : [ ] ,
461+ nextCursor : undefined ,
462+ } ) ;
460463
461464 const { context } = createOrgAllContext ( ) ;
462465
You can’t perform that action at this time.
0 commit comments