()
| 16 | export const textDataTypeId = |
| 17 | "https://blockprotocol.org/@blockprotocol/types/data-type/text/v/1" as VersionedUrl; |
| 18 | const randomStringSuffix = () => { |
| 19 | const alphabet = "abcdefghijklmnopqrstuvwxyz"; |
| 20 | return new Array(6) |
| 21 | .fill(undefined) |
| 22 | .map(() => alphabet[Math.floor(Math.random() * alphabet.length)]) |
| 23 | .join(""); |
| 24 | }; |
| 25 | |
| 26 | export const createTestImpureGraphContext = (): ImpureGraphContext< |
| 27 | true, |
no test coverage detected