Skip to content

Commit 8794df3

Browse files
authored
move all tests under tests/ (#3)
1 parent 1c26c27 commit 8794df3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type { SafetyAssessment } from "./approvals";
1+
import type { SafetyAssessment } from "../src/lib/approvals";
22

3-
import { canAutoApprove } from "./approvals";
3+
import { canAutoApprove } from "../src/lib/approvals";
44
import { describe, test, expect } from "vitest";
55

66
describe("canAutoApprove()", () => {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { formatCommandForDisplay } from "./format-command";
1+
import { formatCommandForDisplay } from "../src/lib/format-command";
22
import { describe, test, expect } from "vitest";
33

44
describe("formatCommandForDisplay()", () => {

codex-cli/src/lib/parse-apply-patch.test.ts renamed to codex-cli/tests/parse-apply-patch.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { parseApplyPatch } from "./parse-apply-patch";
1+
import { parseApplyPatch } from "../src/lib/parse-apply-patch";
22
import { expect, test, describe } from "vitest";
33

44
// Helper function to unwrap a non‑null result in tests that expect success.

0 commit comments

Comments
 (0)