Skip to content

Latest commit

 

History

History
101 lines (65 loc) · 1.09 KB

README.md

File metadata and controls

101 lines (65 loc) · 1.09 KB

badge apm

Mocha Snippets

Snippets for Mocha in Atom.

Install

apm install atom-mocha-snippets or search “snippets” under packages within Atom.

Snippets

describe

describe("", function(){

});

context

context("", function(){

});

it

it("", function(){

});

specify

specify("", function(){

});

before

before(function(){

});

beforeEach

beforeEach(function(){

});

after

after(function(){

});

afterEach

afterEach(function(){

});

pending

it("");

retries

this.retries(integer);

timeout

this.timeout(milliseconds);

License

[MIT] © [Merrill Lines]