Skip to content

Instantly share code, notes, and snippets.

@jfall76
Last active August 29, 2015 14:05
Show Gist options
  • Save jfall76/1b2246f30d5dfd1628fe to your computer and use it in GitHub Desktop.
Save jfall76/1b2246f30d5dfd1628fe to your computer and use it in GitHub Desktop.
PalindromeTest
//var reverse = require('../app/reverse');
var pal = require('../app/pal');
var expect = require('chai').expect;
describe('palindrome', function() {
it('it is a palindrome', function() {
expect(pal('racecar')).to.be.true;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment