Skip to content

Commit 6a74a66

Browse files
committed
chore: wip
1 parent a6b6ac6 commit 6a74a66

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/workspace-detection.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ describe('RegistryClient - Workspace Detection', () => {
219219

220220
it('should handle workspace scanning failures gracefully', async () => {
221221
spyOn(registryClient as any, 'getWorkspaceNames').mockResolvedValue(['@stacksjs/ai', '@stacksjs/cloud'])
222-
222+
223223
// Mock findPackageJsonFiles to return empty for the direct scanning part
224224
spyOn(registryClient as any, 'findPackageJsonFiles').mockResolvedValue([])
225225

test/workspace-integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ describe('RegistryClient - Workspace Integration', () => {
327327

328328
it('should handle mixed success and failure across workspaces', async () => {
329329
spyOn(registryClient as any, 'getWorkspaceNames').mockResolvedValue(['@stacksjs/working', '@stacksjs/broken', '@stacksjs/empty'])
330-
330+
331331
// Mock findPackageJsonFiles to return empty for the direct scanning part
332332
spyOn(registryClient as any, 'findPackageJsonFiles').mockResolvedValue([])
333333

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"target": "esnext",
44
"lib": ["esnext"],
55
"moduleDetection": "force",
6+
"rootDir": "./",
67
"module": "esnext",
78
"moduleResolution": "bundler",
89
"resolveJsonModule": true,
@@ -12,7 +13,6 @@
1213
"noFallthroughCasesInSwitch": true,
1314
"declaration": true,
1415
"noEmit": true,
15-
"rootDir": "./",
1616
"outDir": "./dist",
1717
"esModuleInterop": true,
1818
"forceConsistentCasingInFileNames": true,

0 commit comments

Comments
 (0)