/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import { expect, test } from "vitest"; import { Incidentio } from "../index.js"; test("Catalog Resources Catalog V2 #List Resources", async () => { const incidentio = new Incidentio(); const result = await incidentio.catalogResources.list(); expect(result).toBeDefined(); expect(result).toBeDefined(); expect(result).toEqual({ resources: [ { category: "custom", description: "Boolean true or false value", label: "GitHub Repository", type: "CatalogEntry[\"01GVGYJSD39FRKVDWACK9NDS4E\"]", valueDocstring: "Either the GraphQL node ID of the repository or a string of /, e.g. incident-io/website", }, ], }); });