Codebase list node-d3-shape / 9a40bcf test / symbols-test.js
9a40bcf

Tree @9a40bcf (Download .tar.gz)

symbols-test.js @9a40bcfraw · history · blame

var tape = require("tape"),
    shape = require("../");

tape("symbols is the array of symbol types", function(test) {
  test.deepEqual(shape.symbols, [
    shape.symbolCircle,
    shape.symbolCross,
    shape.symbolDiamond,
    shape.symbolSquare,
    shape.symbolStar,
    shape.symbolTriangle,
    shape.symbolWye
  ]);
  test.end();
});