Skip to content

Instantly share code, notes, and snippets.

@mudivili
Last active September 4, 2017 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mudivili/74ca202b1efc05f5f2e23ddd1a52a7d6 to your computer and use it in GitHub Desktop.
Save mudivili/74ca202b1efc05f5f2e23ddd1a52a7d6 to your computer and use it in GitHub Desktop.
<snippet>
<content><![CDATA[
describe('#${1:methodName}', function f() {
describe('Positive tests', function f() {
before(function f(done) {
done();
});
after(function f(done) {
done();
});
it('${2:test case description}', function f(done) {
${3:serviceName}.${4:methodName}({${5}}, function f(error, result) {
should.not.exist(error);
should.exist(result);
${6}
done();
});
});
});
describe('Negative tests', function f() {
before(function f(done) {
done();
});
after(function f(done) {
done();
});
it('Test case description', function f(done) {
done();
});
});
});
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>testm</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.js</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment