@tscircuit/fake-snippets 0.0.53 → 0.0.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  import { getTestServer } from "bun-tests/fake-snippets-api/fixtures/get-test-server"
2
2
  import { test, expect } from "bun:test"
3
3
 
4
- test("create order with only circuit_json (✅)", async () => {
4
+ test("create order_quote with only circuit_json (✅)", async () => {
5
5
  const {
6
6
  axios,
7
7
  seed: { order },
@@ -16,7 +16,7 @@ test("create order with only circuit_json (✅)", async () => {
16
16
  expect(response.data.order_quote_id).toBeDefined()
17
17
  })
18
18
 
19
- test("create order with only package_release_id (✅)", async () => {
19
+ test("create order_quote with only package_release_id (✅)", async () => {
20
20
  const {
21
21
  axios,
22
22
  seed: { packageRelease },
@@ -31,7 +31,7 @@ test("create order with only package_release_id (✅)", async () => {
31
31
  expect(response.data.order_quote_id).toBeDefined()
32
32
  })
33
33
 
34
- test("create order with both circuit_json and package_release_id (✅)", async () => {
34
+ test("create order_quote with both circuit_json and package_release_id (✅)", async () => {
35
35
  const {
36
36
  axios,
37
37
  seed: { order, packageRelease },
@@ -52,7 +52,7 @@ test("create order with both circuit_json and package_release_id (✅)", async (
52
52
  )
53
53
  })
54
54
 
55
- test("create order with neither circuit_json nor package_release_id (✅)", async () => {
55
+ test("create order_quote with neither circuit_json nor package_release_id (✅)", async () => {
56
56
  const { axios } = await getTestServer()
57
57
 
58
58
  const response = await axios