Skip to content
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

Accept iterables. #153

Merged
merged 18 commits into from
Aug 19, 2020
Prev Previous commit
Next Next commit
reactivate tests
  • Loading branch information
Fil committed Aug 19, 2020
commit 696ae24456522ec7a30246fb2b7a0605fab5d6b9
2 changes: 1 addition & 1 deletion test/line-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tape("line() returns a default line shape", function(test) {
test.end();
});

tape.only("line(x, y) sets x and y", function(test) {
tape("line(x, y) sets x and y", function(test) {
var x = function() {}, y = function() {};
test.equal(shape.line(x).x(), x);
test.equal(shape.line(x, y).y(), y);
Expand Down