Skip to content

Commit fe2e83e

Browse files
ci: apply automated fixes
1 parent 7890c3f commit fe2e83e

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

packages/router-core/tests/built.test.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,12 @@ describe('work in progress', () => {
176176
for (const routeSegments of parsedRoutes) {
177177
if (resolved.has(routeSegments)) continue // already resolved
178178
console.log('\n')
179-
console.log('resolving: depth=', depth, 'parsed=', logParsed(routeSegments))
179+
console.log(
180+
'resolving: depth=',
181+
depth,
182+
'parsed=',
183+
logParsed(routeSegments),
184+
)
180185
console.log('\u001b[34m' + fn + '\u001b[0m')
181186
const currentSegment = routeSegments[depth]
182187
if (!currentSegment) {
@@ -221,8 +226,7 @@ describe('work in progress', () => {
221226
{ length: skipDepth + 1 },
222227
(_, i) =>
223228
`baseSegments[${depth + i}].type === ${candidates[0]![depth + i]!.type} && baseSegments[${depth + i}].value === '${candidates[0]![depth + i]!.value}'`,
224-
).join(`\n${indent} && `) +
225-
(skipDepth ? `\n${indent}` : '')
229+
).join(`\n${indent} && `) + (skipDepth ? `\n${indent}` : '')
226230
fn += `\n${indent}if (${lCondition}${skipConditions}) {`
227231
const deeper = candidates.filter(
228232
(c) => c.length > depth + 1 + skipDepth,

0 commit comments

Comments
 (0)