grunt-karma
Version:
grunt plugin for karma test runner
18 lines (15 loc) • 384 B
JavaScript
/* global describe, it, expect */
describe('grunt-karma', function () {
describe('one', function () {
it('should be awesome', function () {
console.log('one')
expect('foo').to.be.a('string')
})
})
describe('two', function () {
it('should be equally awesome', function () {
console.log('two')
expect('woot').to.be.a('string')
})
})
})