Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created May 25, 2016 02:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericelliott/c3d4f6c09130b828e42cad08dbdd7e8e to your computer and use it in GitHub Desktop.
Save ericelliott/c3d4f6c09130b828e42cad08dbdd7e8e to your computer and use it in GitHub Desktop.
range test 2
test('range', assert => {
const message = `should return a range that ends with the ending number.`;
const actual = range(3, 6).pop();
const expected = 6;
assert.equal(actual, expected, message);
assert.end();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment