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.
33 lines
861 B
33 lines
861 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";
|
|
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,
|
|
];
|
|
|