move all tests under tests/ (#3)
This commit is contained in:
committed by
GitHub
parent
1c26c272c8
commit
8794df3c08
@@ -1,6 +1,6 @@
|
|||||||
import type { SafetyAssessment } from "./approvals";
|
import type { SafetyAssessment } from "../src/lib/approvals";
|
||||||
|
|
||||||
import { canAutoApprove } from "./approvals";
|
import { canAutoApprove } from "../src/lib/approvals";
|
||||||
import { describe, test, expect } from "vitest";
|
import { describe, test, expect } from "vitest";
|
||||||
|
|
||||||
describe("canAutoApprove()", () => {
|
describe("canAutoApprove()", () => {
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import { formatCommandForDisplay } from "./format-command";
|
import { formatCommandForDisplay } from "../src/lib/format-command";
|
||||||
import { describe, test, expect } from "vitest";
|
import { describe, test, expect } from "vitest";
|
||||||
|
|
||||||
describe("formatCommandForDisplay()", () => {
|
describe("formatCommandForDisplay()", () => {
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import { parseApplyPatch } from "./parse-apply-patch";
|
import { parseApplyPatch } from "../src/lib/parse-apply-patch";
|
||||||
import { expect, test, describe } from "vitest";
|
import { expect, test, describe } from "vitest";
|
||||||
|
|
||||||
// Helper function to unwrap a non‑null result in tests that expect success.
|
// Helper function to unwrap a non‑null result in tests that expect success.
|
||||||
Reference in New Issue
Block a user