Skip to content

Commit 97a59c7

Browse files
committed
🔥 Remove test accidentally left in
1 parent aca6620 commit 97a59c7

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

src/cloud/client.test.ts

+1-14
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,7 @@
11
import { test } from "vitest"
22
import { createBitbucketCloudClient } from "./client.ts"
33

4-
test("createBitbucketCloudClient", async ({ expect }) => {
4+
test("createBitbucketCloudClient", ({ expect }) => {
55
const client = createBitbucketCloudClient()
66
expect(client).toBeDefined()
7-
8-
await client.POST("/repositories/{workspace}/{repo_slug}/refs/branches", {
9-
params: {
10-
path: {
11-
repo_slug: "repo_slug",
12-
workspace: "workspace",
13-
},
14-
},
15-
body: {
16-
name: "name",
17-
target: { hash: "hash" },
18-
},
19-
})
207
})

0 commit comments

Comments
 (0)