Skip to content
This repository has been archived by the owner on Jul 13, 2024. It is now read-only.

Commit

Permalink
Fix tests imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoespeon committed May 7, 2019
1 parent 67d6c35 commit ea5e29f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { GitgraphCore, Mode } from "../gitgraph";
import { GitgraphCore } from "../gitgraph";
import { Mode } from "../mode";
import { Orientation } from "../orientation";

describe("Gitgraph.getRenderedData.position", () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { GitgraphCore, Mode } from "../gitgraph";
import { GitgraphCore } from "../gitgraph";
import { Mode } from "../mode";
import { BranchOptions } from "../branch";
import { metroTemplate, TemplateName, blackArrowTemplate } from "../template";
import { Orientation } from "../orientation";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { GitgraphCore } from "../gitgraph";
import { Tag } from "../tag";

describe("Gitgraph.getRenderedData.tags", () => {
it("should tag a commit", () => {
Expand Down

0 comments on commit ea5e29f

Please sign in to comment.