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
760 B
29 lines
760 B
import type { ContextDefinition } from "jsonld";
|
|
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: ContextDefinition;
|
|
successfulTypings: string;
|
|
}
|
|
|
|
export const testData: TestData[] = [
|
|
simple,
|
|
circular,
|
|
// profile,
|
|
// reducedProfile,
|
|
// activityPub,
|
|
// extendsSimple,
|
|
// oldExtends,
|
|
// reusedPredicates,
|
|
];
|
|
|