Skip to content

Instantly share code, notes, and snippets.

@lasekio
Last active January 13, 2016 15:45
Show Gist options
  • Save lasekio/302d0c296cda4b92709a to your computer and use it in GitHub Desktop.
Save lasekio/302d0c296cda4b92709a to your computer and use it in GitHub Desktop.
describe('friends button', function() {
describe('when user is not friend for current user', function() {
it('should show text ...');
it('should ... on click');
});
describe('when user is friend of current user', function() {
it('should show text ...');
it('should ... on click');
});
describe('when user sent invite to current user', function() {
it('should show text ...');
it('should ... on click');
});
describe('when current user sent invite to current user', function() {
it('should show text ...');
it('should ... on click');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment