You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
756 B

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";
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,
];