Skip to content

Instantly share code, notes, and snippets.

View igorlima's full-sized avatar
:octocat:
I may be slow to respond.

Igor Ribeiro Lima igorlima

:octocat:
I may be slow to respond.
View GitHub Profile
@igorlima
igorlima / Pasta.js
Last active December 29, 2015 09:19
Introdução de como executar testes unitários em diferentes tipos de navegadores
function Pasta() {
// recipes for good pasta sauces
this.sauces = {
'bolognese': ["tomatoes", "garlic", "olive", "herbs", "meat"]
};
this.sauceIngredients = [];
}
Pasta.prototype.add = function (ingredient) {
this.sauceIngredients.push(ingredient);
@igorlima
igorlima / 5-a-testem-issue.md
Last active December 25, 2015 05:49
A Testem issue

The failed tests are not been reported on testem as we expected.

@igorlima
igorlima / 0_reuse_code.js
Created October 1, 2013 11:59
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console