Codebase list node-d3-shape / 9c18b3f5-ac97-46fa-90af-1b3bae2c2c71/main test / symbols-test.js
9c18b3f5-ac97-46fa-90af-1b3bae2c2c71/main

Tree @9c18b3f5-ac97-46fa-90af-1b3bae2c2c71/main (Download .tar.gz)

symbols-test.js @9c18b3f5-ac97-46fa-90af-1b3bae2c2c71/mainraw · 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();
});