Exemple #1
0
  it("hasIntersect", function() {
    assert.hasIntersect([2, 4, 6], [1, 2, 3]);

    assert.throws(function() {
      assert.hasIntersect([1, 2, 3], [4, 5, 6]);
    });
  });
Exemple #2
0
 assert.throws(function() {
   assert.hasIntersect([1, 2, 3], [4, 5, 6]);
 });