Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
🔥 Remove test accidentally left in
  • Loading branch information
NatoBoram committed Mar 4, 2025
commit 97a59c7cefbf6cb4a381f6a51b0a300bfe373e67
15 changes: 1 addition & 14 deletions src/cloud/client.test.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,7 @@
import { test } from "vitest"
import { createBitbucketCloudClient } from "./client.ts"

test("createBitbucketCloudClient", async ({ expect }) => {
test("createBitbucketCloudClient", ({ expect }) => {
const client = createBitbucketCloudClient()
expect(client).toBeDefined()

await client.POST("/repositories/{workspace}/{repo_slug}/refs/branches", {
params: {
path: {
repo_slug: "repo_slug",
workspace: "workspace",
},
},
body: {
name: "name",
target: { hash: "hash" },
},
})
})