algotech / ultisnips-javascript

JavaScript snippets for vim
4 stars 4 forks source link

Testing with jasmine #3

Open stocarul opened 9 years ago

stocarul commented 9 years ago

http://jasmine.github.io/1.3/introduction.html

A new dedicated page (like the one for AngularJS should be created). All snippets should have ja as prefix.

stocarul commented 9 years ago

The following snippets should be created:

describe("VAR", function() {
  it("VAR", function() {
    VAR
  });
});
it("VAR", function() {
  VAR
});
beforeEach(function() {
  VAR
});
afterEach(function() {
  VAR
});