coffeescript-support/snippets/desc.snippet

11 lines
170 B
Plaintext
Raw Normal View History

2011-01-31 03:13:44 +00:00
describe('${1:when...}', function () {
beforeEach(function () {
${2}
});
it('${3:should...}', function () {
expect(${4:condition}).toEqual(${5});
});
});