Skip to content

Instantly share code, notes, and snippets.

@dansalias
Last active November 18, 2019 21:28
Show Gist options
  • Save dansalias/be26816ba0b69d2e66a7f5a9c7ef24c7 to your computer and use it in GitHub Desktop.
Save dansalias/be26816ba0b69d2e66a7f5a9c7ef24c7 to your computer and use it in GitHub Desktop.
Lambda Testing Example - capitalise.spec.js
describe('capitalise lambda', () => {
it('should capitalise the first letter of every word', () => {
const handler = require('capitalise.js').handler;
const result = handler({name: 'dan salias'});
expect(result).toStrictEqual({name: 'Dan Salias'});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment