prototypey.org - atproto lexicon typescript toolkit - mirror https://github.com/tylersayshi/prototypey

remove unused test

Tyler a53e2ef5 93302e30

-36
-36
packages/cli/tests/integration/filesystem.test.ts
··· 1 - import { expect, test, describe, beforeEach, afterEach } from "vitest"; 2 - import { 3 - mkdir, 4 - writeFile, 5 - rm, 6 - chmod, 7 - access, 8 - constants, 9 - } from "node:fs/promises"; 10 - import { join } from "node:path"; 11 - import { tmpdir } from "node:os"; 12 - import { runCLI } from "../test-utils.js"; 13 - 14 - describe("CLI File System Handling", () => { 15 - let testDir: string; 16 - let outDir: string; 17 - let schemasDir: string; 18 - 19 - beforeEach(async () => { 20 - // Create a temporary directory for test files 21 - testDir = join(tmpdir(), `prototypey-fs-test-${String(Date.now())}`); 22 - outDir = join(testDir, "output"); 23 - schemasDir = join(testDir, "schemas"); 24 - await mkdir(testDir, { recursive: true }); 25 - await mkdir(schemasDir, { recursive: true }); 26 - }); 27 - 28 - afterEach(async () => { 29 - // Clean up test directory 30 - try { 31 - await rm(testDir, { recursive: true, force: true }); 32 - } catch (error) { 33 - // Ignore cleanup errors 34 - } 35 - }); 36 - });