Skip to content

Commit

Permalink
refactor: fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
LonelyPrincess committed Oct 9, 2020
1 parent 68a1c33 commit 82be99f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/graph/graph.helper.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ describe("Graph Helper", () => {
expect(utils.throwErr).toHaveBeenCalledWith(
"Graph",
"you provided a invalid links data structure. " +
// eslint-disable-next-line
'Links source and target attributes must point to an existent node - "B" is not a valid source node id'
);
});
Expand All @@ -348,6 +349,7 @@ describe("Graph Helper", () => {
expect(utils.throwErr).toHaveBeenCalledWith(
"Graph",
"you provided a invalid links data structure. " +
// eslint-disable-next-line
'Links source and target attributes must point to an existent node - "B" is not a valid target node id'
);
});
Expand Down

0 comments on commit 82be99f

Please sign in to comment.