Skip to content

Commit

Permalink
use synchronous rm
Browse files Browse the repository at this point in the history
  • Loading branch information
leowrites committed Sep 9, 2024
1 parent d761837 commit e20d901
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions memory-viz/src/tests/cli.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,10 @@ describe.each([
);

describe("memory-viz CLI", () => {
const command = "memory-viz";
const roughjsConfig = "--roughjs-config seed=1234";

const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "test_results_"));

afterAll(() => {
fs.rm(tempDir, { recursive: true });
fs.rmSync(tempDir, { recursive: true });
});

describe.each([
Expand Down

0 comments on commit e20d901

Please sign in to comment.