[READ-ONLY] Mirror of https://github.com/bombshell-dev/tools. Internal CLI to standardize tooling across all Bombshell projects
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(test): snapshot serializer resolution

Nate Moore (Mar 26, 2026, 10:33 PM EDT) b3d5aa72 cbc5b12c

+12 -3
+6
CHANGELOG.md
··· 1 1 # @bomb.sh/tools 2 2 3 + ## 0.3.4 4 + 5 + ### Patch Changes 6 + 7 + - Fixes `vitest-ansi-serializer` resolution issue 8 + 3 9 ## 0.3.3 4 10 5 11 ### Patch Changes
+1 -1
package.json
··· 1 1 { 2 2 "name": "@bomb.sh/tools", 3 - "version": "0.3.3", 3 + "version": "0.3.4", 4 4 "description": "The internal dev, build, and lint CLI for Bombshell projects", 5 5 "keywords": [ 6 6 "bombshell",
+1 -1
src/test-utils/fixture.test.ts
··· 34 34 it("cleanup removes the temp directory", async () => { 35 35 const fixture = await createFixture({ "a.txt": "" }); 36 36 const path = fixture.root; 37 - expect(await fixture.isDirectory(fixture.root)).toBe(true); 37 + expect(await fixture.isDirectory(".")).toBe(true); 38 38 await fixture.cleanup(); 39 39 expect(existsSync(path)).toBe(false); 40 40 });
+4 -1
src/test-utils/vitest.config.ts
··· 1 + import { fileURLToPath } from "node:url"; 1 2 import { defineConfig } from "vitest/config"; 2 3 3 4 export default defineConfig({ ··· 6 7 env: { 7 8 FORCE_COLOR: "1", 8 9 }, 9 - snapshotSerializers: ["vitest-ansi-serializer"], 10 + snapshotSerializers: [ 11 + fileURLToPath(import.meta.resolve("vitest-ansi-serializer")), 12 + ], 10 13 }, 11 14 });