Skip to content

Commit cbd5146

Browse files
committed
chore: wip
1 parent 95725fa commit cbd5146

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

test/configuration-migration.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ describe('Configuration Migration & Import System', () => {
2323
// Change back to original directory and clean up
2424
try {
2525
process.chdir(originalCwd)
26-
} catch {
26+
}
27+
catch {
2728
// If we can't change back, try a safe directory
2829
try {
2930
process.chdir(tmpdir())
30-
} catch {
31+
}
32+
catch {
3133
process.chdir('/')
3234
}
3335
}

test/dependency-files-integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { BuddyBotConfig, PackageUpdate } from '../src/types'
22
import { afterAll, beforeAll, describe, expect, it } from 'bun:test'
3-
import { existsSync, mkdtempSync, rmSync, unlinkSync, writeFileSync } from 'node:fs'
3+
import { existsSync, mkdtempSync, rmSync, writeFileSync } from 'node:fs'
44
import { tmpdir } from 'node:os'
55
import { join } from 'node:path'
66
import { Buddy } from '../src/buddy'

0 commit comments

Comments
 (0)