Skip to content

Instantly share code, notes, and snippets.

View igordeoliveirasa's full-sized avatar

Igor de Oliveira Sá igordeoliveirasa

View GitHub Profile
@igordeoliveirasa
igordeoliveirasa / gist:6ff4a86b93fd4c57ba00
Last active August 29, 2015 14:20
Configuring Karma & Jasmine
mkdir tests
echo "
describe(\"A suite\", function() {
it(\"contains spec with an expectation\", function() {
expect(true).toBe(true);
});
});
" > tests/test.spec.js
npm install karma --save-dev