import type { LdoJsonldContext } from "@ldo/jsonld-dataset-proxy"; import { activityPub } from "./activityPub"; import { circular } from "./circular"; import { profile } from "./profile"; import { reducedProfile } from "./reducedProfile"; import { simple } from "./simple"; import { extendsSimple } from "./extendsSimple"; import { reusedPredicates } from "./reusedPredicates"; import { oldExtends } from "./oldExtends"; import { orSimple } from "./orSimple"; import { andSimple } from "./andSimple"; export interface TestData { name: string; shexc: string; sampleTurtle: string; baseNode: string; successfulContext: LdoJsonldContext; successfulTypings: string; } export const testData: TestData[] = [ simple, circular, profile, reducedProfile, activityPub, extendsSimple, oldExtends, reusedPredicates, orSimple, andSimple, ];