We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aca6620 commit 97a59c7Copy full SHA for 97a59c7
src/cloud/client.test.ts
@@ -1,20 +1,7 @@
1
import { test } from "vitest"
2
import { createBitbucketCloudClient } from "./client.ts"
3
4
-test("createBitbucketCloudClient", async ({ expect }) => {
+test("createBitbucketCloudClient", ({ expect }) => {
5
const client = createBitbucketCloudClient()
6
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
- })
20
})
0 commit comments