Skip to content

Instantly share code, notes, and snippets.

@ivanoats
Forked from jfall76/palTest.js
Created August 12, 2014 22:35
Show Gist options
  • Save ivanoats/e1cc3b655efd0b254289 to your computer and use it in GitHub Desktop.
Save ivanoats/e1cc3b655efd0b254289 to your computer and use it in GitHub Desktop.
//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