Skip to content

Instantly share code, notes, and snippets.

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