Skip to content

Commit

Permalink
Add npm test back
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Dupuy <[email protected]>
  • Loading branch information
flo-dup committed Dec 3, 2024
1 parent d31d401 commit 97e2c48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
npm install
npm run licenses-check
npm run lint
npm run test:coverage
npm run build
- name: SonarCloud Scan
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ export function getTextNodePosition(textNode: SVGGraphicsElement | null): Point
export function getNodeMove(node: NodeMetadata, nodePosition: Point): NODEMOVE {
const xNew = round(nodePosition.x);
const yNew = round(nodePosition.y);
return { xOrig: node.y, yOrig: node.x, xNew: xNew, yNew: yNew };
return { xOrig: node.x, yOrig: node.y, xNew: xNew, yNew: yNew };
}

// Checks if the element is hoverable
Expand Down

0 comments on commit 97e2c48

Please sign in to comment.