(name: string, value: string)
| 34 | import { createFlowExecutionContext } from "../../src/flowExecutionSupport"; |
| 35 | |
| 36 | const createSchemaField = (name: string, value: string) => ({ |
| 37 | name, |
| 38 | type: "StringU8", |
| 39 | fields: [{ type: "String", val: value }], |
| 40 | resolvedKeyValue: value, |
| 41 | isKey: false, |
| 42 | }); |
| 43 | |
| 44 | describe("generate rows node", () => { |
| 45 | it("falls back to current game schema when DBNameToDBVersions is missing", async () => { |
no outgoing calls
no test coverage detected