Skip to content

Commit

Permalink
Use @ontologies packages v2 rc in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Thom van Kalkeren committed Mar 4, 2021
1 parent e7859b6 commit 304310f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/LinkedRenderStore.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import "jest";
import "./useHashFactory";

import rdfFactory, { Quad } from "@ontologies/core";
import owl from "@ontologies/owl";
import * as owl from "@ontologies/owl";
import * as rdf from "@ontologies/rdf";
import * as schema from "@ontologies/schema";
import { LinkedRenderStore } from "../LinkedRenderStore";
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/RDFStore.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import "jest";
import "./useHashFactory";

import rdfFactory, { Quadruple } from "@ontologies/core";
import owl from "@ontologies/owl";
import * as owl from "@ontologies/owl";
import * as rdf from "@ontologies/rdf";
import * as rdfs from "@ontologies/rdfs";
import * as schema from "@ontologies/schema";
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/Schema.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "../__tests__/useHashFactory";
import rdfFactory from "@ontologies/core";
import * as rdf from "@ontologies/rdf";
import * as rdfs from "@ontologies/rdfs";
import schemaNS from "@ontologies/schema";
import * as schemaNS from "@ontologies/schema";
import "jest";

import ex from "../ontology/ex";
Expand Down
2 changes: 1 addition & 1 deletion src/schema/__tests__/rdfs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "../../__tests__/useHashFactory";
import rdfFactory, { Node } from "@ontologies/core";
import * as rdfx from "@ontologies/rdf";
import * as rdfs from "@ontologies/rdfs";
import schemaNS from "@ontologies/schema";
import * as schemaNS from "@ontologies/schema";
import "jest";

import example from "../../ontology/example";
Expand Down
2 changes: 1 addition & 1 deletion src/store/__tests__/BasicStore.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "../../__tests__/useHashFactory";

import rdf, { DataFactory } from "@ontologies/core";
import owl from "@ontologies/owl";
import * as owl from "@ontologies/owl";
import * as rdfx from "@ontologies/rdf";
import * as rdfs from "@ontologies/rdfs";
import * as schema from "@ontologies/schema";
Expand Down
2 changes: 1 addition & 1 deletion src/store/__tests__/RDFIndex.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "../../__tests__/useHashFactory";

import rdf from "@ontologies/core";
import owl from "@ontologies/owl";
import * as owl from "@ontologies/owl";
import * as rdfx from "@ontologies/rdf";
import * as rdfs from "@ontologies/rdfs";
import * as schema from "@ontologies/schema";
Expand Down

0 comments on commit 304310f

Please sign in to comment.