move all tests under tests/ (#3)

This commit is contained in:
Thibault Sottiaux
2025-04-16 10:21:48 -07:00
committed by GitHub
parent 1c26c272c8
commit 8794df3c08
3 changed files with 4 additions and 4 deletions

View File

@@ -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";
describe("canAutoApprove()", () => {

View File

@@ -1,4 +1,4 @@
import { formatCommandForDisplay } from "./format-command";
import { formatCommandForDisplay } from "../src/lib/format-command";
import { describe, test, expect } from "vitest";
describe("formatCommandForDisplay()", () => {

View File

@@ -1,4 +1,4 @@
import { parseApplyPatch } from "./parse-apply-patch";
import { parseApplyPatch } from "../src/lib/parse-apply-patch";
import { expect, test, describe } from "vitest";
// Helper function to unwrap a nonnull result in tests that expect success.