Skip to content

Instantly share code, notes, and snippets.

@aikoven
Last active October 6, 2015 17:32
Show Gist options
  • Save aikoven/a70032f43503c976a5f8 to your computer and use it in GitHub Desktop.
Save aikoven/a70032f43503c976a5f8 to your computer and use it in GitHub Desktop.
import {hello} from '../src/hello';
import * as assert from 'assert';
describe('hello', () => {
it('should capitalize the name', () => {
assert.equal("Goodbye, John", hello('john'));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment