@@ -58,6 +58,7 @@ export interface SubgraphFixtures {
5858 */
5959export const subgraphTest = test . extend < SubgraphFixtures > ( {
6060 // @ts -expect-error TODO: Fix after merge - fixture use parameter type
61+ // eslint-disable-next-line no-empty-pattern
6162 emptySubgraph : async ( { } , use : ( value : unknown ) => Promise < void > ) => {
6263 const subgraph = createTestSubgraph ( {
6364 name : 'Empty Test Subgraph' ,
@@ -70,6 +71,7 @@ export const subgraphTest = test.extend<SubgraphFixtures>({
7071 } ,
7172
7273 // @ts -expect-error TODO: Fix after merge - fixture use parameter type
74+ // eslint-disable-next-line no-empty-pattern
7375 simpleSubgraph : async ( { } , use : ( value : unknown ) => Promise < void > ) => {
7476 const subgraph = createTestSubgraph ( {
7577 name : 'Simple Test Subgraph' ,
@@ -82,6 +84,7 @@ export const subgraphTest = test.extend<SubgraphFixtures>({
8284 } ,
8385
8486 // @ts -expect-error TODO: Fix after merge - fixture use parameter type
87+ // eslint-disable-next-line no-empty-pattern
8588 complexSubgraph : async ( { } , use : ( value : unknown ) => Promise < void > ) => {
8689 const subgraph = createTestSubgraph ( {
8790 name : 'Complex Test Subgraph' ,
@@ -101,6 +104,7 @@ export const subgraphTest = test.extend<SubgraphFixtures>({
101104 } ,
102105
103106 // @ts -expect-error TODO: Fix after merge - fixture use parameter type
107+ // eslint-disable-next-line no-empty-pattern
104108 nestedSubgraph : async ( { } , use : ( value : unknown ) => Promise < void > ) => {
105109 const nested = createNestedSubgraphs ( {
106110 depth : 3 ,
@@ -113,6 +117,7 @@ export const subgraphTest = test.extend<SubgraphFixtures>({
113117 } ,
114118
115119 // @ts -expect-error TODO: Fix after merge - fixture use parameter type
120+ // eslint-disable-next-line no-empty-pattern
116121 subgraphWithNode : async ( { } , use : ( value : unknown ) => Promise < void > ) => {
117122 // Create the subgraph definition
118123 const subgraph = createTestSubgraph ( {
@@ -140,6 +145,7 @@ export const subgraphTest = test.extend<SubgraphFixtures>({
140145 } ,
141146
142147 // @ts -expect-error TODO: Fix after merge - fixture use parameter type
148+ // eslint-disable-next-line no-empty-pattern
143149 eventCapture : async ( { } , use : ( value : unknown ) => Promise < void > ) => {
144150 const subgraph = createTestSubgraph ( {
145151 name : 'Event Test Subgraph'
@@ -191,6 +197,7 @@ export interface EdgeCaseFixtures {
191197 */
192198export const edgeCaseTest = subgraphTest . extend < EdgeCaseFixtures > ( {
193199 // @ts -expect-error TODO: Fix after merge - fixture use parameter type
200+ // eslint-disable-next-line no-empty-pattern
194201 circularSubgraph : async ( { } , use : ( value : unknown ) => Promise < void > ) => {
195202 const rootGraph = new LGraph ( )
196203
@@ -225,6 +232,7 @@ export const edgeCaseTest = subgraphTest.extend<EdgeCaseFixtures>({
225232 } ,
226233
227234 // @ts -expect-error TODO: Fix after merge - fixture use parameter type
235+ // eslint-disable-next-line no-empty-pattern
228236 deeplyNestedSubgraph : async ( { } , use : ( value : unknown ) => Promise < void > ) => {
229237 // Create a very deep nesting structure (but not exceeding MAX_NESTED_SUBGRAPHS)
230238 const nested = createNestedSubgraphs ( {
@@ -238,6 +246,7 @@ export const edgeCaseTest = subgraphTest.extend<EdgeCaseFixtures>({
238246 } ,
239247
240248 // @ts -expect-error TODO: Fix after merge - fixture use parameter type
249+ // eslint-disable-next-line no-empty-pattern
241250 maxIOSubgraph : async ( { } , use : ( value : unknown ) => Promise < void > ) => {
242251 // Create a subgraph with many inputs and outputs
243252 const inputs = Array . from ( { length : 20 } , ( _ , i ) => ( {
0 commit comments