Skip to content

Run noCI tests using GitHub workflows #7343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jun 5, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove extra parameter from toBeCloseTo
  • Loading branch information
marthacryan committed Jan 21, 2025
commit 6cc2ecc18da9e9b5f2100b9e6677d366d30fe9a0
4 changes: 2 additions & 2 deletions test/jasmine/tests/sankey_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -816,8 +816,8 @@ describe('sankey tests', function() {

var g = d3Select('.hovertext');
var pos = g.node().getBoundingClientRect();
expect(pos.x).toBeCloseTo(279, -1.5, 'it should have correct x position');
expect(pos.y).toBeCloseTo(500, -1.5, 'it should have correct y position');
expect(pos.x).toBeCloseTo(279, -1.5);
expect(pos.y).toBeCloseTo(500, -1.5);
})
.then(done, done.fail);
});
Expand Down
Loading